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

  :root {
    --white: #ffffff;
    --off-white: #f7f8fc;
    --border: #e8eaf0;
    --text-primary: #0f1117;
    --text-secondary: #5a6172;
    --text-muted: #8e96a8;
    --blue: #2563eb;
    --blue-light: #eff4ff;
    --blue-mid: #dbeafe;
    --green: #16a34a;
    --green-light: #f0fdf4;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
    --radius: 10px;
    --radius-lg: 16px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, h5 {
    font-family: 'Sora', sans-serif;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  a { text-decoration: none; color: inherit; }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
  }

  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo-mark {
    width: 28px;
    height: 28px;
    background: var(--blue);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
  }

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

  .nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.15s;
  }

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

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    border: none;
  }

  .btn-ghost {
    background: transparent;
    color: var(--text-secondary);
  }

  .btn-ghost:hover { color: var(--text-primary); }

  .btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 1px 3px rgba(37,99,235,0.3);
  }

  .btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
    transform: translateY(-1px);
  }

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

  .btn-outline:hover {
    background: var(--blue-light);
  }

  .btn-lg {
    padding: 13px 28px;
    font-size: 1rem;
    border-radius: 10px;
  }

  /* HERO */
  .hero {
    background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 50%, #f7f8fc 100%);
    padding: 96px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-light);
    border: 1px solid var(--blue-mid);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--text-primary);
    max-width: 720px;
    margin: 0 auto 20px;
  }

  .hero h1 span { color: var(--blue); }

  .hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .hero-note span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 8px;
  }

  /* TRUST BAR */
  .trust-bar {
    padding: 28px 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
  }

  .trust-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
  }

  .trust-icon {
    width: 20px;
    height: 20px;
    color: var(--blue);
    flex-shrink: 0;
  }

  /* STATS */
  .stats {
    background: var(--off-white);
    padding: 64px 2rem;
  }

  .stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .stat-item {
    background: var(--white);
    padding: 36px 28px;
    text-align: center;
  }

  .stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
  }

  /* SECTION */
  .section {
    padding: 96px 2rem;
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    max-width: 560px;
  }

  .section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 56px;
  }

  /* FEATURES GRID */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--blue);
    opacity: 0;
    transition: opacity 0.2s;
  }

  .feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: #d0d8f0;
  }

  .feature-card:hover::before { opacity: 1; }

  .feature-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
  }

  .feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
  }

  .feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
  }

  /* COMPARISON */
  .comparison-section {
    background: var(--off-white);
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
  }

  .comparison-table th {
    padding: 18px 24px;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
  }

  .comparison-table th.highlight {
    background: var(--blue-light);
    color: var(--blue);
  }

  .comparison-table td {
    padding: 16px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
  }

  .comparison-table td.feature-name {
    font-weight: 500;
    color: var(--text-primary);
  }

  .comparison-table td.highlight {
    background: rgba(37,99,235,0.03);
    font-weight: 500;
    color: var(--text-primary);
  }

  .comparison-table tr:last-child td { border-bottom: none; }

  .check { color: var(--green); font-weight: 600; }
  .cross { color: #dc2626; }
  .partial { color: #d97706; }

  /* PRICING */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
  }

  .pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
  }

  .pricing-card.popular {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
  }

  .popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .pricing-name {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .pricing-price {
    font-family: 'Sora', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
  }

  .pricing-price sup {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
    margin-top: 6px;
    display: inline-block;
  }

  .pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .pricing-volume {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }

  .pricing-features {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pricing-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
  }

  /* SOCIAL PROOF */
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .proof-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
  }

  .proof-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .proof-text {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
  }

  .proof-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue);
    flex-shrink: 0;
  }

  .proof-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
  }

  .proof-role {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  /* STEPS */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
    z-index: 0;
  }

  .step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
    color: var(--blue);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
  }

  .step h3 {
    font-size: 0.975rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
  }

  .step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* CTA */
  .cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 96px 2rem;
    text-align: center;
  }

  .cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: white;
    margin-bottom: 16px;
  }

  .cta-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-white {
    background: white;
    color: var(--blue);
    font-weight: 600;
  }

  .btn-white:hover {
    background: #f0f4ff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

  .cta-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
  }

  /* FOOTER */
  footer {
    background: var(--text-primary);
    color: rgba(255,255,255,0.65);
    padding: 64px 2rem 32px;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand .logo {
    color: white;
    margin-bottom: 16px;
  }

  .footer-brand p {
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 260px;
  }

  .footer-col h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 16px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s;
  }

  .footer-col ul li a:hover { color: white; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
  }

  .footer-badges {
    display: flex;
    gap: 10px;
  }

  .badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 5px;
    letter-spacing: 0.03em;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge { animation: fadeUp 0.5s ease both; }
  .hero h1 { animation: fadeUp 0.5s 0.1s ease both; }
  .hero p { animation: fadeUp 0.5s 0.2s ease both; }
  .hero-actions { animation: fadeUp 0.5s 0.3s ease both; }
  .hero-note { animation: fadeUp 0.5s 0.4s ease both; }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    gap: 5px;
    transition: all 0.15s;
  }
  .hamburger:hover { border-color: var(--blue); }
  .hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.25s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE MENU DRAWER */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    padding: 24px 2rem;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    transition: all 0.2s ease;
  }
  .mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  .mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    transition: color 0.15s;
  }
  .mobile-menu a:hover { color: var(--blue); }
  .mobile-menu .mobile-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-menu .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .features-grid, .pricing-grid, .proof-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .steps-grid::before { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none !important; }
    .nav-actions { display: none !important; }
    .hamburger { display: flex; }
    .comparison-table { font-size: 0.8rem; }
    .hero-actions { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .hero-actions .btn { width: 100%; justify-content: center; }
  }

/* ============================================
   PRICING PAGE — FAQ
============================================ */
.faq-list { display:flex; flex-direction:column; gap:0; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-item:last-child { border-bottom:none; }
.faq-q { width:100%; text-align:left; padding:20px 24px; font-family:'Sora',sans-serif; font-size:0.95rem; font-weight:600; color:var(--text-primary); background:var(--white); border:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:16px; transition:background 0.15s; }
.faq-q:hover { background:var(--off-white); }
.faq-q.open { background:var(--blue-light); color:var(--blue); }
.faq-q .chevron { font-size:0.8rem; transition:transform 0.2s; flex-shrink:0; }
.faq-q.open .chevron { transform:rotate(180deg); }
.faq-a { padding:0 24px; max-height:0; overflow:hidden; transition:all 0.25s ease; background:var(--white); }
.faq-a.open { max-height:300px; padding:0 24px 20px; }
.faq-a p { font-size:0.9rem; color:var(--text-secondary); line-height:1.7; }

/* ============================================
   BLOG / SINGLE
============================================ */
.blog-header { background:linear-gradient(160deg,#f0f4ff 0%,#ffffff 60%); padding:72px 2rem 64px; border-bottom:1px solid var(--border); }
.blog-header-inner { max-width:1100px; margin:0 auto; }
.blog-header h1 { font-size:2.8rem; font-weight:700; margin-bottom:12px; }
.blog-header p { font-size:1.05rem; color:var(--text-secondary); max-width:480px; line-height:1.7; }
.blog-main { max-width:1100px; margin:0 auto; padding:64px 2rem; }

.featured-post { display:grid; grid-template-columns:1fr 1fr; margin-bottom:72px; background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition:box-shadow 0.2s; text-decoration:none; color:inherit; }
.featured-post:hover { box-shadow:var(--shadow-md); }
.featured-image { background:linear-gradient(135deg,#1e3a8a 0%,#2563eb 100%); min-height:280px; display:flex; align-items:center; justify-content:center; font-size:5rem; }
.featured-image img { width:100%; height:100%; object-fit:cover; }
.featured-content { padding:40px; }
.post-category { display:inline-block; background:var(--blue-light); color:var(--blue); font-size:0.75rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; padding:4px 12px; border-radius:100px; margin-bottom:16px; }
.featured-content h2 { font-size:1.65rem; font-weight:700; margin-bottom:14px; line-height:1.3; }
.featured-content p { font-size:0.975rem; color:var(--text-secondary); line-height:1.7; margin-bottom:24px; }
.post-meta { display:flex; align-items:center; gap:16px; font-size:0.82rem; color:var(--text-muted); flex-wrap:wrap; }

.posts-section-title { font-size:1.1rem; font-weight:600; margin-bottom:28px; padding-bottom:16px; border-bottom:1px solid var(--border); }
.posts-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:48px; }
.post-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:all 0.2s; display:flex; flex-direction:column; }
.post-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.post-thumb { height:160px; display:flex; align-items:center; justify-content:center; font-size:3rem; background:linear-gradient(135deg,#f0f4ff,#dbeafe); overflow:hidden; }
.post-thumb img { width:100%; height:100%; object-fit:cover; }
.post-card-body { padding:24px; flex:1; display:flex; flex-direction:column; }
.post-card-body h3 { font-size:1.05rem; font-weight:600; margin-bottom:10px; line-height:1.4; }
.post-card-body h3 a { color:inherit; }
.post-card-body h3 a:hover { color:var(--blue); }
.post-card-body p { font-size:0.875rem; color:var(--text-secondary); line-height:1.65; flex:1; margin-bottom:16px; }
.post-card-body .post-meta { margin-top:auto; }

.pagination { display:flex; align-items:center; justify-content:center; gap:8px; margin-top:48px; }
.pagination .page-numbers { width:38px; height:38px; border-radius:8px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:0.875rem; font-weight:500; color:var(--text-secondary); cursor:pointer; transition:all 0.15s; background:var(--white); }
.pagination .page-numbers:hover { border-color:var(--blue); color:var(--blue); }
.pagination .page-numbers.current { background:var(--blue); color:white; border-color:var(--blue); }
.pagination ul { display:flex; gap:8px; list-style:none; }
.pagination ul li a,.pagination ul li span { width:38px; height:38px; border-radius:8px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:0.875rem; font-weight:500; color:var(--text-secondary); transition:all 0.15s; background:var(--white); }
.pagination ul li a:hover { border-color:var(--blue); color:var(--blue); }
.pagination ul li span.current { background:var(--blue); color:white; border-color:var(--blue); }

/* Single post */
.article-header { background:linear-gradient(160deg,#f0f4ff 0%,#ffffff 60%); padding:72px 2rem 56px; border-bottom:1px solid var(--border); }
.article-header-inner { max-width:780px; margin:0 auto; }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:0.82rem; color:var(--text-muted); margin-bottom:20px; }
.breadcrumb a { color:var(--blue); }
.article-header h1 { font-size:clamp(1.8rem,3.5vw,2.6rem); font-weight:700; margin-bottom:20px; line-height:1.2; }
.article-header .post-meta { margin-bottom:28px; }
.author-block { display:inline-flex; align-items:center; gap:12px; padding:16px 20px; background:var(--white); border:1px solid var(--border); border-radius:var(--radius); }
.author-avatar { width:40px; height:40px; border-radius:50%; background:var(--blue-mid); display:flex; align-items:center; justify-content:center; font-family:'Sora',sans-serif; font-size:0.8rem; font-weight:700; color:var(--blue); }
.author-name { font-size:0.875rem; font-weight:600; }
.author-role { font-size:0.8rem; color:var(--text-muted); }

.article-layout { max-width:1100px; margin:0 auto; padding:64px 2rem; display:grid; grid-template-columns:1fr 280px; gap:64px; align-items:start; }
.article-body { min-width:0; }
.article-content { font-size:1rem; line-height:1.8; color:#2d3142; }
.article-content h2 { font-size:1.45rem; font-weight:700; margin:48px 0 16px; }
.article-content h3 { font-size:1.15rem; font-weight:600; margin:36px 0 12px; }
.article-content p { margin-bottom:24px; }
.article-content a { color:var(--blue); text-decoration:underline; text-underline-offset:3px; }
.article-content ul,.article-content ol { padding-left:1.5rem; margin-bottom:24px; }
.article-content li { margin-bottom:8px; line-height:1.7; }
.article-content strong { font-weight:600; color:var(--text-primary); }
.article-content blockquote { border-left:3px solid var(--blue); margin:32px 0; padding:20px 24px; background:var(--blue-light); border-radius:0 var(--radius) var(--radius) 0; font-style:italic; color:var(--text-secondary); }
.article-content code { font-family:'Courier New',monospace; font-size:0.875em; background:var(--off-white); border:1px solid var(--border); padding:2px 6px; border-radius:4px; color:#d63384; }
.article-content pre { background:#1e2030; border-radius:var(--radius); padding:24px; margin:28px 0; overflow-x:auto; }
.article-content pre code { background:none; border:none; color:#a6accd; font-size:0.875rem; padding:0; }

.article-sidebar { position:sticky; top:84px; }
.toc-card { background:var(--off-white); border:1px solid var(--border); border-radius:var(--radius-lg); padding:24px; margin-bottom:24px; }
.toc-title { font-family:'Sora',sans-serif; font-size:0.8rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-muted); margin-bottom:16px; }
.toc-list { list-style:none; }
.toc-list li { margin-bottom:8px; }
.toc-list a { font-size:0.875rem; color:var(--text-secondary); line-height:1.5; transition:color 0.15s; display:block; padding:2px 0 2px 12px; border-left:2px solid transparent; }
.toc-list a:hover { color:var(--blue); border-left-color:var(--blue); }
.sidebar-cta-card { background:linear-gradient(135deg,#1e3a8a 0%,#2563eb 100%); border-radius:var(--radius-lg); padding:24px; color:white; }
.sidebar-cta-card h4 { font-size:1rem; font-weight:700; margin-bottom:10px; }
.sidebar-cta-card p { font-size:0.85rem; opacity:0.8; line-height:1.6; margin-bottom:18px; }

.related-section { border-top:1px solid var(--border); max-width:1100px; margin:0 auto; padding:64px 2rem; }
.related-section h3 { font-size:1.3rem; font-weight:700; margin-bottom:32px; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.related-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:20px; transition:all 0.2s; }
.related-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.related-card h4 { font-size:0.95rem; font-weight:600; line-height:1.4; margin-bottom:8px; }
.related-card h4 a { color:inherit; }
.related-card h4 a:hover { color:var(--blue); }

/* Page header */
.page-header { background:linear-gradient(160deg,#f0f4ff 0%,#ffffff 60%); padding:72px 2rem 64px; border-bottom:1px solid var(--border); }
.page-header-inner { max-width:1100px; margin:0 auto; }
.page-label { font-size:0.75rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--blue); margin-bottom:12px; }
.page-header h1 { font-size:clamp(2rem,4vw,3rem); font-weight:700; margin-bottom:16px; }
.page-header p { font-size:1.05rem; color:var(--text-secondary); max-width:500px; line-height:1.7; margin-bottom:32px; }

@media (max-width:768px) {
  .featured-post { grid-template-columns:1fr; }
  .featured-image { min-height:200px; }
  .featured-content { padding:24px; }
  .posts-grid,.related-grid { grid-template-columns:1fr; }
  .article-layout { grid-template-columns:1fr; }
  .article-sidebar { display:none; }
}


/* ============================================
   PRICING PAGE — page-smtp-pricing-bitcoin.php
============================================ */

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

  :root {
    --white: #ffffff;
    --off-white: #f7f8fc;
    --border: #e8eaf0;
    --text-primary: #0f1117;
    --text-secondary: #5a6172;
    --text-muted: #8e96a8;
    --blue: #2563eb;
    --blue-light: #eff4ff;
    --blue-mid: #dbeafe;
    --green: #16a34a;
    --green-light: #f0fdf4;
    --red: #dc2626;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
    --radius: 10px;
    --radius-lg: 16px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.6; color: var(--text-primary); background: var(--white); -webkit-font-smoothing: antialiased; }
  h1,h2,h3,h4 { font-family: 'Sora', sans-serif; line-height: 1.25; letter-spacing: -0.02em; }
  a { text-decoration: none; color: inherit; }

  /* NAV */
  nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 2rem; }
  .nav-inner { max-width: 1100px; margin: 0 auto; height: 64px; display: flex; align-items: center; justify-content: space-between; }
  .logo { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
  .logo-mark { width: 28px; height: 28px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; font-weight: 700; }
  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); transition: color 0.15s; }
  .nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
  .nav-actions { display: flex; align-items: center; gap: 12px; }
  .btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.15s; border: none; }
  .btn-ghost { background: transparent; color: var(--text-secondary); }
  .btn-ghost:hover { color: var(--text-primary); }
  .btn-primary { background: var(--blue); color: white; box-shadow: 0 1px 3px rgba(37,99,235,0.3); }
  .btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.35); }
  .btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
  .btn-outline:hover { background: var(--blue-light); }
  .btn-lg { padding: 13px 28px; font-size: 1rem; border-radius: 10px; }

  /* PAGE HEADER */
  .page-header {
    background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 60%);
    padding: 72px 2rem 64px;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }
  .page-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
  .page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; }
  .page-header p { font-size: 1.05rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }

  .header-badges {
    display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  }
  .header-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--white); border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 0.8rem; font-weight: 500;
    padding: 6px 14px; border-radius: 100px;
    box-shadow: var(--shadow-sm);
  }

  /* SECTION */
  .section { padding: 80px 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
  .section-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; margin-bottom: 12px; }
  .section-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 500px; line-height: 1.7; margin-bottom: 48px; }

  /* PRICING TABLE */
  .pricing-table-wrap {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); margin-bottom: 24px;
  }

  .pricing-table { width: 100%; border-collapse: collapse; }

  .pricing-table thead tr { background: var(--off-white); }
  .pricing-table th {
    padding: 16px 24px; text-align: left;
    font-family: 'Sora', sans-serif; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-muted); border-bottom: 1px solid var(--border);
  }

  .pricing-table tbody tr { transition: background 0.15s; }
  .pricing-table tbody tr:hover { background: var(--off-white); }
  .pricing-table tbody tr:not(:last-child) td { border-bottom: 1px solid var(--border); }

  .pricing-table td { padding: 18px 24px; font-size: 0.95rem; }
  .pricing-table td.volume { font-weight: 500; color: var(--text-primary); }
  .pricing-table td.price-year { font-weight: 700; color: var(--blue); font-size: 1.05rem; }
  .pricing-table td.price-month { color: var(--text-secondary); }
  .pricing-table td.price-month span { color: var(--text-muted); font-size: 0.85rem; }

  .pricing-table tr.popular-row { background: var(--blue-light); }
  .pricing-table tr.popular-row:hover { background: #e0ebff; }
  .pricing-table tr.popular-row td { border-bottom-color: #c7d8f8; }

  .popular-tag {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--blue); color: white;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 2px 8px; border-radius: 4px;
    margin-left: 10px; vertical-align: middle;
  }

  .pricing-table td.cta-cell { text-align: right; }
  .btn-table {
    display: inline-flex; align-items: center;
    background: var(--blue); color: white;
    font-size: 0.8rem; font-weight: 600; padding: 7px 16px;
    border-radius: 7px; transition: all 0.15s; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-table:hover { background: #1d4ed8; transform: translateY(-1px); }
  .btn-table-outline {
    background: transparent; color: var(--blue); border: 1.5px solid var(--blue);
  }
  .btn-table-outline:hover { background: var(--blue-light); transform: none; }

  .pricing-note {
    background: var(--blue-light); border: 1px solid var(--blue-mid);
    border-radius: var(--radius); padding: 18px 24px;
    font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65;
  }
  .pricing-note strong { color: var(--blue); }

  /* CRYPTO */
  .crypto-section { background: var(--off-white); }

  .crypto-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin-bottom: 24px;
  }

  .crypto-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 20px;
    text-align: center; transition: all 0.2s;
  }
  .crypto-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--blue-mid); }

  .crypto-icon { font-size: 2.2rem; margin-bottom: 12px; }
  .crypto-name { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
  .crypto-ticker { font-size: 0.8rem; color: var(--text-muted); }

  .privacy-note {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 18px 24px;
    font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65;
    display: flex; align-items: flex-start; gap: 12px;
  }
  .privacy-note .lock { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

  /* WHAT YOU CAN SEND */
  .send-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  .send-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px; overflow: hidden; position: relative;
  }
  .send-card.allowed { border-top: 3px solid var(--green); }
  .send-card.not-allowed { border-top: 3px solid #e5e7eb; }

  .send-card-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
  }
  .send-card-header h3 { font-size: 1.05rem; font-weight: 700; }
  .send-badge-allowed { background: var(--green-light); color: var(--green); font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
  .send-badge-not { background: #f3f4f6; color: var(--text-muted); font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }

  .send-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .send-list li { font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
  .send-list li .icon-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
  .send-list li .icon-cross { color: #9ca3af; flex-shrink: 0; }

  .why-matters {
    margin-top: 24px; padding: 16px 20px;
    background: var(--off-white); border-radius: var(--radius);
    font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65;
  }
  .why-matters strong { color: var(--text-primary); }

  /* FEATURES INCLUDED */
  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .feature-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); transition: all 0.15s;
  }
  .feature-item:hover { box-shadow: var(--shadow-sm); border-color: var(--blue-mid); }
  .feature-emoji { font-size: 1.4rem; flex-shrink: 0; }
  .feature-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
  .feature-text p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

  /* FREE TRIAL */
  .trial-section { background: var(--off-white); }
  .trial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
  .trial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
  .trial-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
  .trial-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .trial-list li { font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; }
  .trial-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

  .trial-note {
    background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius);
    padding: 16px 20px; font-size: 0.875rem; color: #92400e; line-height: 1.65;
  }

  /* FAQ */
  .faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }
  .faq-q {
    width: 100%; text-align: left; padding: 20px 24px;
    font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 600;
    color: var(--text-primary); background: var(--white); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    transition: background 0.15s;
  }
  .faq-q:hover { background: var(--off-white); }
  .faq-q.open { background: var(--blue-light); color: var(--blue); }
  .faq-q .chevron { font-size: 0.8rem; transition: transform 0.2s; flex-shrink: 0; }
  .faq-q.open .chevron { transform: rotate(180deg); }
  .faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.25s ease; background: var(--white); }
  .faq-a.open { max-height: 200px; padding: 0 24px 20px; }
  .faq-a p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

  /* CUSTOM CTA */
  .custom-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: var(--radius-lg); padding: 48px;
    text-align: center; color: white; margin-top: 48px;
  }
  .custom-cta h3 { font-size: 1.5rem; margin-bottom: 12px; }
  .custom-cta p { font-size: 0.975rem; opacity: 0.8; margin-bottom: 28px; max-width: 420px; margin-left: auto; margin-right: auto; line-height: 1.65; }
  .cta-buttons { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .btn-white { background: white; color: var(--blue); font-weight: 600; }
  .btn-white:hover { background: #f0f4ff; transform: translateY(-1px); }
  .btn-white-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
  .btn-white-outline:hover { background: rgba(255,255,255,0.1); }

  /* FOOTER */
  footer { background: var(--text-primary); color: rgba(255,255,255,0.65); padding: 48px 2rem 28px; }
  .footer-inner { max-width: 1100px; margin: 0 auto; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; }
  .footer-badges { display: flex; gap: 10px; }
  .badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 5px; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
  .page-header > * { animation: fadeUp 0.5s ease both; }
  .page-header .page-label { animation-delay: 0s; }
  .page-header h1 { animation-delay: 0.1s; }
  .page-header p { animation-delay: 0.2s; }
  .page-header .header-badges { animation-delay: 0.3s; }

  @media (max-width: 768px) {
    .crypto-grid { grid-template-columns: repeat(2, 1fr); }
    .send-grid, .trial-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .nav-links { display: none !important; }
  }
/* ============================================
   404 PAGE
============================================ */
.error-404-section {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 50%, #f7f8fc 100%);
  padding: 80px 2rem;
  text-align: center;
}

.error-404-inner {
  max-width: 560px;
  margin: 0 auto;
}

.error-404-badge {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--blue);
  margin-bottom: 24px;
  opacity: 0.15;
}

.error-404-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.error-404-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.error-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.error-404-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.error-404-links span {
  color: var(--text-muted);
}

.error-404-links a {
  color: var(--blue);
  font-weight: 500;
  transition: opacity 0.15s;
}

.error-404-links a:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .error-404-badge { font-size: 5rem; }
  .error-404-actions { flex-direction: column; width: 100%; }
  .error-404-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   CONTACT PAGE — page-contact.php
============================================ */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}

.contact-card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-card:hover::before {
  transform: scaleY(1);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-card-body { flex: 1; }

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.contact-card-arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.contact-card:hover .contact-card-arrow {
  color: var(--blue);
  transform: translateX(3px);
}

.contact-footnote {
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 24px;
  line-height: 1.8;
}