/**
 * HR:STAT Theme — Main Stylesheet
 * @package hrstat
 * @version 1.0.0
 */


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

  :root {
    --brand: #475569;
    --brand-dark: #334155;
    --brand-light: #64748b;
    --brand-xlight: #e2e8f0;
    --brand-subtle: #f1f5f9;
    --accent: #0ea5e9;
    --accent-dark: #0284c7;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --surface: #ffffff;
    --bg: #f8fafc;
    --border: #e2e8f0;
    --radius: 16px;
    --radius-sm: 8px;
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--surface);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
  }


  .hero-brand-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, rgba(71,85,105,0.07) 0%, rgba(71,85,105,0.03) 100%);
    border: 1.5px solid rgba(71,85,105,0.18);
    border-radius: 16px;
    padding: 1.1rem 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    position: relative;
    overflow: hidden;
  }

  .hero-brand-badge::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--brand);
    border-radius: 3px 0 0 3px;
  }

  .hero-brand-badge-icon {
    width: 36px;
    height: 36px;
    background: var(--brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .hero-brand-badge-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
  }

  .hero-brand-badge-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .hero-brand-badge-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 3px;
    font-size: 0.9rem;
  }

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

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo img {
    height: 36px;
    width: auto;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: -0.01em;
  }

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

  .header-demo {
    color: var(--brand) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--brand-xlight);
    transition: all 0.2s;
  }

  .header-demo:hover {
    background: var(--brand-xlight);
    color: var(--brand-dark) !important;
  }

  .header-cta {
    background: var(--brand);
    color: white !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background 0.2s, transform 0.15s !important;
  }

  .header-cta:hover {
    background: var(--brand-dark) !important;
    transform: translateY(-1px);
    color: white !important;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 40%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(71,85,105,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-xlight);
    color: var(--brand);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .hero-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
  }

  .hero-title em {
    font-style: italic;
    color: var(--brand);
  }

  .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 480px;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--brand);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    letter-spacing: -0.01em;
    border: 2px solid var(--brand);
  }

  .btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(71,85,105,0.3);
  }

  .btn-outline {
    background: transparent;
    color: var(--brand);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--brand);
    transition: all 0.2s;
    letter-spacing: -0.01em;
  }

  .btn-outline:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-2px);
  }

  /* Hero image area */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-bg-shape {
    position: absolute;
    width: 480px;
    height: 380px;
    background: var(--brand);
    border-radius: 40% 60% 70% 30% / 30% 40% 60% 70%;
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
  }

  .hero-bg-shape-2 {
    position: absolute;
    width: 380px;
    height: 300px;
    background: var(--accent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.06;
    top: 50%;
    left: 50%;
    transform: translate(-42%, -55%) rotate(10deg);
  }

  .hero-app-frame {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 16px;
    box-shadow:
      0 0 0 1px rgba(71,85,105,0.12),
      0 20px 60px rgba(71,85,105,0.18),
      0 4px 12px rgba(71,85,105,0.08);
    overflow: hidden;
    width: 100%;
    max-width: 560px;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.4s ease;
  }

  .hero-app-frame:hover {
    transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
  }

  .hero-app-frame img {
    width: 100%;
    display: block;
  }

  .hero-floating-badge {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    z-index: 3;
    white-space: nowrap;
  }

  .hero-floating-badge.badge-top {
    top: -16px;
    right: -20px;
    color: var(--text-primary);
  }

  .hero-floating-badge.badge-bottom {
    bottom: -16px;
    left: -20px;
    color: var(--text-primary);
  }

  .badge-dot {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--brand-xlight);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .badge-dot svg {
    width: 16px;
    height: 16px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ===== TRUST SECTION ===== */
  .trust-section {
    background: var(--brand);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .trust-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
  }

  .trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .trust-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }

  .trust-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 3rem;
  }

  .trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
  }

  .trust-stat {
    background: rgba(255,255,255,0.06);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background 0.2s;
  }

  .trust-stat:hover { background: rgba(255,255,255,0.1); }

  .trust-stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
  }

  .trust-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .trust-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--brand);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s;
    letter-spacing: -0.01em;
  }

  .trust-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  }

  .trust-cta svg {
    width: 18px;
    height: 18px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s;
  }

  .trust-cta:hover svg { transform: translateX(4px); }

  /* ===== VALUE SECTION ===== */
  .value-section {
    padding: 7rem 2rem;
    background: var(--bg);
  }

  .value-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-block;
    background: var(--brand-xlight);
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .value-card:hover {
    border-color: var(--brand-xlight);
    box-shadow: 0 12px 40px rgba(71,85,105,0.1);
    transform: translateY(-4px);
  }

  .value-card:hover::before { transform: scaleX(1); }

  .value-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-xlight);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .value-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

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

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

  .value-highlight {
    margin-top: 3rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .value-highlight-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
  }

  .value-item-check {
    width: 28px;
    height: 28px;
    background: var(--brand-xlight);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .value-item-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--brand);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .value-highlight-cta {
    text-align: right;
    flex-shrink: 0;
  }

  .value-highlight-cta p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    max-width: 260px;
    line-height: 1.3;
  }

  /* ===== BRAND SECTION ===== */
  .brand-section {
    padding: 7rem 2rem;
    background: white;
    position: relative;
    overflow: hidden;
  }

  .brand-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .brand-content .section-title {
    margin-bottom: 1.25rem;
  }

  .brand-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .brand-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .brand-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
  }

  .brand-feature::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--brand-xlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
  }

  .brand-visual {
    position: relative;
  }

  .brand-bg-deco {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--brand-subtle);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -50%);
    z-index: 0;
  }

  .brand-img-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(71,85,105,0.1),
      0 24px 64px rgba(71,85,105,0.14);
  }

  .brand-img-wrapper img {
    width: 100%;
    display: block;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 2rem 3rem;
    text-align: center;
  }

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

  .footer-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
  }

  .footer-logo img {
    height: 32px;
    width: auto;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }

  .footer-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: white; }

  .footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
  }

  .footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
  }


  /* ===== LANGUAGES SECTION ===== */
  .lang-section {
    padding: 7rem 2rem;
    background: var(--bg);
  }

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

  .lang-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .lang-header .section-label {
    display: inline-block;
    margin-bottom: 1.25rem;
  }

  .lang-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0.75rem auto 0;
    line-height: 1.7;
  }

  .lang-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .lang-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem 1rem 1.5rem;
    text-align: center;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: default;
  }

  .lang-card:hover {
    border-color: var(--brand);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(71,85,105,0.12);
  }

  .lang-flag {
    font-size: 2.4rem;
    line-height: 1;
  }

  .lang-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
  }

  .lang-badge {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg);
    border-radius: 50px;
    padding: 3px 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 1px solid var(--border);
  }

  .lang-badge-main {
    background: var(--brand-xlight);
    color: var(--brand);
    border-color: transparent;
  }

  .lang-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
  }

  .lang-note svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
    flex-shrink: 0;
  }

  @media (max-width: 900px) {
    .lang-grid { grid-template-columns: repeat(4, 1fr); }
  }

  @media (max-width: 500px) {
    .lang-grid { grid-template-columns: repeat(3, 1fr); }
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-text > * {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
  }

  .hero-text .hero-label { animation-delay: 0.1s; }
  .hero-text .hero-title { animation-delay: 0.2s; }
  .hero-text .hero-subtitle { animation-delay: 0.35s; }
  .hero-text .hero-buttons { animation-delay: 0.5s; }

  .hero-visual {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
  }



  /* ===== INTEGRATIONS SECTION ===== */
  .integrations-section {
    padding: 7rem 2rem;
    background: var(--bg);
    position: relative;
  }

  .integrations-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .int-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .int-header .section-label { display: inline-block; margin-bottom: 1.25rem; }

  .int-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0.75rem auto 0;
    line-height: 1.75;
  }

  .int-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .int-block {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
  }

  .int-block:hover {
    border-color: var(--brand);
    box-shadow: 0 12px 40px rgba(71,85,105,0.1);
    transform: translateY(-3px);
  }

  .int-block-icon {
    width: 52px;
    height: 52px;
    background: var(--brand-xlight);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .int-block-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--brand);
  }

  .int-icon-gcal {
    background: #e8f0fe;
    padding: 6px;
    overflow: hidden;
  }

  .int-icon-gcal svg { width: 40px; height: 40px; }

  .int-block-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
  }

  .int-block-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .int-source-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .int-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-subtle);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
  }

  .int-pill svg {
    width: 13px;
    height: 13px;
    stroke: var(--brand);
  }

  .int-gcal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .int-gcal-chip {
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #c5d8fb;
  }

  /* Export section */
  .int-export-section {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
  }

  .int-export-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
  }

  .int-export-icon {
    width: 52px;
    height: 52px;
    background: var(--brand-xlight);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .int-export-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--brand);
  }

  .int-export-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }

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

  .int-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .int-logo-card {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.25s;
  }

  .int-logo-card:hover {
    border-color: var(--brand);
    box-shadow: 0 8px 24px rgba(71,85,105,0.1);
    transform: translateY(-3px);
  }

  .int-logo-box {
    padding: 1.25rem 1rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .int-logo-box svg { width: 120px; height: 48px; }

  .int-logo-desc {
    padding: 1rem;
  }

  .int-logo-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
  }

  .int-logo-info {
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.5;
  }

  .int-export-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--brand-subtle);
    border-radius: 12px;
    padding: 1rem 1.25rem;
  }

  .int-export-note svg {
    width: 16px;
    height: 16px;
    stroke: var(--brand);
    flex-shrink: 0;
  }

  .int-export-note a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
  }

  .int-export-note a:hover { text-decoration: underline; }

  @media (max-width: 900px) {
    .int-top-grid { grid-template-columns: 1fr; }
    .int-logos-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 500px) {
    .int-logos-grid { grid-template-columns: 1fr; }
    .int-export-header { flex-direction: column; }
  }

  /* ===== SECURITY SECTION ===== */
  .security-section {
    padding: 7rem 2rem;
    background: var(--text-primary);
    position: relative;
    overflow: hidden;
  }

  .security-section .section-label {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
  }

  .security-section .section-title {
    color: white;
  }

  .security-section > .security-inner > p {
    color: rgba(255,255,255,0.6);
  }

  .security-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .sec-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 4rem;
  }

  .sec-col {
    border-radius: 20px;
    overflow: hidden;
  }

  .sec-col-good {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .sec-col-bad {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .sec-col-header {
    padding: 1.5rem 1.75rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .sec-badge-good {
    display: inline-block;
    background: #475569;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
  }

  .sec-badge-bad {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 0.4rem;
  }

  .sec-col-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .sec-items {
    padding: 0.75rem;
  }

  .sec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 4px;
  }

  .sec-item-good { background: rgba(71,85,105,0.25); }
  .sec-item-bad { background: rgba(255,255,255,0.02); }

  .sec-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .sec-item-icon.good {
    background: rgba(71,85,105,0.5);
  }
  .sec-item-icon.good svg { stroke: #94a3b8; width: 18px; height: 18px; }

  .sec-item-icon.bad {
    background: rgba(255,255,255,0.05);
  }
  .sec-item-icon.bad svg { stroke: rgba(255,255,255,0.25); width: 18px; height: 18px; }

  .sec-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1.3;
  }

  .sec-item-good .sec-item-title { color: rgba(255,255,255,0.92); }
  .sec-item-bad .sec-item-title { color: rgba(255,255,255,0.35); }

  .sec-item-desc {
    font-size: 12px;
    line-height: 1.5;
  }

  .sec-item-good .sec-item-desc { color: rgba(255,255,255,0.5); }
  .sec-item-bad .sec-item-desc { color: rgba(255,255,255,0.2); }

  .sec-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.2);
    padding-top: 6rem;
  }

  /* Security badges row */
  .sec-badges-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
  }

  .sec-badge-item {
    background: rgba(255,255,255,0.04);
    padding: 1.75rem 1rem;
    text-align: center;
    transition: background 0.2s;
  }

  .sec-badge-item:hover { background: rgba(255,255,255,0.07); }

  .sec-badge-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
  }

  .sec-badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: rgba(255,255,255,0.6);
    fill: none;
  }

  .sec-badge-label {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
  }

  .sec-badge-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
  }

  @media (max-width: 900px) {
    .sec-compare { grid-template-columns: 1fr; }
    .sec-vs { padding: 0.75rem 0; }
    .sec-badges-row { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 600px) {
    .sec-badges-row { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .trust-stats { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .brand-inner { grid-template-columns: 1fr; gap: 3rem; }
    .value-highlight { flex-direction: column; }
    nav .header-cta { display: none; }
  }

  @media (max-width: 600px) {
    nav { gap: 1rem; }
    nav a { font-size: 13px; }
    .hero-floating-badge { display: none; }
  }


/* ══════════════════════════════════════════
   WORDPRESS SPECIFIC
══════════════════════════════════════════ */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--brand); color: white;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { height: 36px; width: auto; }
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.alignwide  { max-width: 1400px; }
.alignfull  { max-width: none; width: 100vw; margin-left: calc(-50vw + 50%); }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.site-header.is-scrolled { box-shadow: 0 2px 12px rgba(71,85,105,0.1); }
body.nav-open { overflow: hidden; }
.nav__list { display: flex; align-items: center; list-style: none; gap: 2rem; margin: 0; padding: 0; }
.nav__cta-group { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; transition: background 0.2s;
}
.nav-toggle:hover { background: var(--brand-subtle); }
.nav-toggle__bar {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px; transition: all 0.3s;
}
[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.anim-ready { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.anim-ready.is-visible { opacity: 1; transform: translateY(0); }
.hero-app-placeholder, .brand-img-placeholder {
  background: var(--brand-subtle); border-radius: 12px; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; text-align: center; color: var(--text-muted);
  font-size: 14px; border: 2px dashed var(--border);
}
.entry-content {
  max-width: 720px; margin: 0 auto; padding: 4rem 2rem;
  line-height: 1.75; font-size: 1.05rem; color: var(--text-secondary);
}
.entry-content h1,.entry-content h2,.entry-content h3 {
  color: var(--text-primary); font-weight: 700;
  margin: 2rem 0 0.75rem; letter-spacing: -0.02em;
}
.entry-content a { color: var(--brand); }
.entry-content a:hover { text-decoration: underline; }
.entry-content img { max-width: 100%; height: auto; border-radius: 12px; }
.entry-content blockquote {
  border-left: 4px solid var(--brand); padding: 1rem 1.5rem;
  background: var(--brand-subtle); border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--text-secondary); margin: 1.5rem 0;
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: white; flex-direction: column; align-items: flex-start;
    padding: 2rem; gap: 0.5rem; transform: translateX(100%);
    transition: transform 0.3s ease; overflow-y: auto; z-index: 99; display: flex;
  }
  .site-nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; width: 100%; gap: 0; }
  .nav__list .nav__item { border-bottom: 1px solid var(--border); }
  .nav__link { display: block; padding: 1rem 0; font-size: 16px; }
  .nav__cta-group { width: 100%; flex-direction: column; padding-top: 1rem; }
  .nav__cta-group .btn-primary,
  .nav__cta-group .header-demo { width: 100%; text-align: center; }
}
