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

  :root {
    --black: #0d0d0d;
    --white: #ffffff;
    --blue: #1a6bff;
    --blurple: #1a1eff;
    --blue-dim: #e8f0ff;
    --gray-100: #fbfbfb;
    --gray-300: #d6d6d0;
    --gray-500: #6a6c71;
    --gray-700: #3d3d38;
    --serif: 'Poppins', Georgia, serif;
    --sans: 'DM Sans', sans-serif;

    --btn-shadow: #D7E4FF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250,250,248,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-300);
  }
  
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--black);
    width: 164px; 
    height: auto;
  }

  .nav-logo svg { width: 32px; height: 32px; }

  .nav-logo-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--black);
    width: 44px; 
    height: auto;
    border-radius: 7px;
  }

  .nav-wordmark {
    font-family: var(--serif);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
  }

  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .nav-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .btn-ghost {
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s;
  }

  .btn-ghost:hover { background: var(--gray-100); }

  .btn-primary {
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--blue);
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 6px;
    transition: opacity 0.2s, transform 0.15s;
    display: inline-block;
    box-shadow: 0 0 0 6px var(--btn-shadow);
  }

  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(26,107,255,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-dim);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.1s forwards;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 820px;
    font-weight: 300;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.2s forwards;
  }

  .hero h1 em {
    /* font-style: italic; */
    color: var(--blue);
  }

  .hero-sub {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 44px;
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.35s forwards;
    text-align: center;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.45s forwards;
  }

  .btn-primary-lg {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--blue);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    transition: opacity 0.2s, transform 0.15s;
    display: inline-block;
    box-shadow: 0 0 0 6px var(--btn-shadow);
  }

  .btn-primary-lg:hover { opacity: 0.88; transform: translateY(-2px); }

  .hero-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-500);
  }
  
  .hero-note svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray-500);
  }

  /* PRODUCT SCREENSHOT */
  .hero-screen {
    width: 100%;
    max-width: 1040px;
    background: var(--black);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 2px rgba(78, 94, 118, 0.14), 0 0 0 1px rgba(0,0,0,0.08);
    opacity: 0;
    animation: fadeUp 0.9s ease 0.55s forwards;
    position: relative;
  }

  .hero-screenshot {
    margin-top: 33px;
    width: 100%;
    max-width: 1040px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 5px rgba(133, 152, 174, 0.11), 0 0 0 1px rgba(0,0,0,0.08);
    opacity: 0;
    animation: fadeUp 0.9s ease 0.55s forwards;
  }
  
  .hero-screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
  }

  .screen-bar {
    background: #1a1a1a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #2a2a2a;
  }

  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-r { background: #ff5f57; }
  .dot-y { background: #febc2e; }
  .dot-g { background: #28c840; }

  .screen-url {
    margin: 0 auto;
    background: #2a2a2a;
    border-radius: 5px;
    padding: 4px 16px;
    font-size: 0.75rem;
    color: #666;
    font-family: var(--sans);
  }

  .screen-body {
    display: flex;
    height: 480px;
  }

  .screen-sidebar {
    width: 160px;
    background: #111;
    padding: 20px 0;
    border-right: 1px solid #222;
    flex-shrink: 0;
  }

  .screen-sidebar-logo {
    padding: 0 16px 20px;
    border-bottom: 1px solid #222;
    margin-bottom: 16px;
  }

  .screen-sidebar-logo svg { width: 26px; height: 26px; opacity: 0.9; }

  .screen-section-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #444;
    padding: 0 16px;
    margin-bottom: 4px;
  }

  .screen-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    font-size: 11px;
    color: #666;
    cursor: default;
  }

  .screen-nav-item.active { color: #fff; background: rgba(26,107,255,0.15); border-right: 2px solid var(--blue); }
  .screen-nav-item svg { width: 12px; height: 12px; opacity: 0.6; }
  .screen-nav-item.active svg { opacity: 1; }

  .screen-main {
    flex: 1;
    background: #f9f9f7;
    display: flex;
    flex-direction: column;
  }

  .screen-header {
    padding: 18px 24px;
    border-bottom: 1px solid #e8e8e4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
  }

  .screen-title { font-size: 14px; font-weight: 600; color: #111; }

  .screen-btn {
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 5px;
  }

  .screen-content { padding: 20px 24px; flex: 1; overflow: hidden; }

  .screen-table-header {
    display: grid;
    grid-template-columns: 90px 1fr 120px 80px 90px 50px;
    font-size: 9px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0 0 10px;
    border-bottom: 1px solid #e8e8e4;
    margin-bottom: 2px;
  }

  .screen-row {
    display: grid;
    grid-template-columns: 90px 1fr 120px 80px 90px 50px;
    font-size: 10px;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0ec;
    align-items: center;
    animation: rowFade 0.4s ease both;
  }

  .screen-row:nth-child(1) { animation-delay: 0.9s; }
  .screen-row:nth-child(2) { animation-delay: 1.0s; }
  .screen-row:nth-child(3) { animation-delay: 1.1s; }
  .screen-row:nth-child(4) { animation-delay: 1.2s; }

  @keyframes rowFade {
    from { opacity: 0; transform: translateX(8px); }
    to { opacity: 1; transform: none; }
  }

  .badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 100px;
  }

  .badge-posted { background: #dcfce7; color: #16a34a; }
  .badge-pending { background: #fef9c3; color: #a16207; }
  .badge-idea { background: #ede9fe; color: #7c3aed; }
  .badge-draft { background: #f1f5f9; color: #64748b; }

  .screen-text-preview {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    font-size: 10px;
  }

  /* SECTIONS */
  section { padding: 100px 48px; }

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

  .section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 600px;
    margin-bottom: 20px;
  }

  .section-sub {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 480px;
    line-height: 1.65;
  }

  /* WHY SECTION */
.why {
  background: var(--gray-100);
  color: var(--black);
  padding: 50px 50px;
}

.why-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.why .section-label { 
    color: var(--blue); 
}

.why .section-title { 
    color: var(--black); 
    max-width: 100%; 
}

.why .section-sub { 
    color: var(--gray-500);
    margin: 16px auto 0; 
    max-width: 70%;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto 60px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    overflow: hidden;
  }
  
  .why-card {
    padding: 48px 40px;
    position: relative;
    transition: background 0.2s;
    border-right: 1px solid var(--gray-300);
  }
  
  .why-card:last-child {
    border-right: none;
  }
  
  .why-card:hover {
    background: #f8faff;
  }
  
  .why-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #6aa3ff);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .why-card:hover::after { opacity: 1; }
  
  .why-num {
    font-family: var(--serif);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-dim);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .why-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.3;
    color: var(--black);
  }
  
  .why-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
  }

  /* FEATURES */
  .features {
    background: var(--gray-100);
    padding: 100px 48px;
  }
  
  .features-header {
    text-align: center;
    max-width: 750px;
    margin: 25px auto 72px;
  }
  
  .features-header .section-title { max-width: 100%; }
  
  .features-header .section-sub {
    margin: 16px auto 0;
    max-width: 500px;
    text-align: center;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .feature-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
  }
  
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 4px rgba(161, 190, 219, 0.07);
    border-color: #c7daff;
    background: var(--white);
    opacity: 1;
  }
  
  .feature-icon-wrap {
    position: relative;
    width: 33px;
    height: 33px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--blue-dim);
    border-radius: 60% 40% 55% 45% / 50% 60% 20% 35%;
    transition: border-radius 0.4s ease, background 0.2s;
  }
  
  .feature-icon-blob {
    display: none;
    opacity: 1;
  }
  
  .feature-icon-wrap svg {
    position: relative;
    width: 33px;
    height: 33px;
    stroke: var(--blue);
    z-index: 1;
  }
  
  .feature-text h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
    line-height: 1.3;
  }
  
  .feature-text p {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.75;
  }
  
  @media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; }
  }

  /* PRICING */
  .pricing { max-width: 1100px; margin: 0 auto; padding: 100px 48px; }

  .pricing-header { text-align: center; margin-bottom: 16px; }

  .pricing-header .section-label { text-align: center; }

  .billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
  }

  .toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
  }

  .toggle-label.active { color: var(--black); font-weight: 600; }

  .toggle-pill {
    width: 44px;
    height: 24px;
    background: var(--blue);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
  }

  .toggle-pill::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
  }

  .toggle-pill.monthly::after { transform: translateX(-20px); }

  .save-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

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

  .pricing-card {
    border: 1px solid var(--gray-300);
    border-radius: 14px;
    padding: 36px;
    background: var(--white);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  }

  .pricing-card.featured {
    border-color: var(--blue);
    border-width: 2px;
    background: #fff;
  }

  .pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
  }

  .plan-name {
    font-family: var(--serif);
    font-size: 1.375rem;
    margin-bottom: 8px;
  }

  .plan-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.5;
    min-height: 42px;
  }

  .plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
  }

  .price-amount {
    font-family: var(--serif);
    font-size: 3rem;
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .price-period {
    font-size: 0.875rem;
    color: var(--gray-500);
  }

  .price-annual {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 28px;
  }

  .plan-divider {
    height: 1px;
    background: var(--gray-300);
    margin-bottom: 24px;
  }

  .plan-features {
    list-style: none;
    margin-bottom: 32px;
  }

  .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .plan-features li .check {
    color: var(--blue);
    font-size: 0.75rem;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .plan-features li .dim { color: var(--gray-500); }

  .plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
  }

  .plan-btn:hover { opacity: 0.88; transform: translateY(-1px); }

  .plan-btn-outline {
    background: transparent;
    border: 1.5px solid var(--gray-300);
    color: var(--black);
  }

  .plan-btn-filled {
    background: var(--blue);
    color: #fff;
  }

  /* ADDON NOTE */
  .addon-note {
    background: var(--blue-dim);
    border: 1px solid #c7daff;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .addon-note strong { color: var(--blue); }

  /* TESTIMONIAL PLACEHOLDER */
  .quote-section {
    background: var(--blue);
    padding: 100px 48px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  blockquote {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 100;
   
    color: var(--white);
    max-width: 760px;
    margin: 0 auto 32px;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  .quote-attr {
    font-size: 0.875rem;
    color: #fdfdfd;
  }

  .quote-attr strong { color: #fdfdfd; }

  /* FINAL CTA */
  .final-cta {
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #ebebeb;
  }

  .final-cta::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .final-cta h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta h2 em { font-style: italic; color: var(--blue); }

  .final-cta p {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.44;
  }


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

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    section, .pricing { padding: 72px 24px; }
    .hero { padding: 100px 24px 60px; }
    .why { padding: 72px 24px; }
    .why-grid { grid-template-columns: 1fr; gap: 2px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .quote-section { padding: 72px 24px; }
    .final-cta { padding: 80px 24px; }
    .footer { flex-direction: column; gap: 20px; text-align: center; }
    .screen-body { height: 320px; }
    .screen-sidebar { width: 110px; }
  }

  /* =========================================================
   FOOTER
   ========================================================= */

.footer{
  padding: 75px 52px 0;
  width: 100%;
}

.footer-inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 72px;
  padding-top: 0;
  border-top: 0;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand{
  max-width: 320px;
  flex: 0 0 320px;
}

.footer-logo{
  height: 33px;
  width: auto;
  display: block;
}

.footer-links{
  display: flex;
  gap: 72px;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-col{
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col-connect{
  min-width: 220px;
}

.footer-col-title{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #232637;
}

.footer-col a{
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
  color: #6b7280;
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease;
}

.footer-col a:hover{
  color: #232637;
}

.footer-email{
  display: inline-block;
  margin-top: -2px;
}

.footer-socials{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
}

.footer-socials a{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover{
  color: #777f8e;
  transform: translateY(-1px);
}

/* Real Icon Footer Social Icons */
.social-icons {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask-image: var(--social-icon);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: var(--social-icon);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.footer-socials svg{
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* bottom bar */
.footer-bottom{
  margin-top: 56px;
}

.footer-bottom-inner{
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(35, 38, 55, 0.08);
  padding: 50px 0 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-copyright{
  font-size: 17px;
  line-height: 1.4;
  color: #8f97a4;
}

/* STATS BAR */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  padding: 40px 48px;
}

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

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-300);
  flex-shrink: 0;
}

/* INTEGRATIONS */
.integrations {
  background: var(--white);
  padding: 100px 48px;
}

.integrations-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

.integrations-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.integrations-header {
  text-align: left;
}

.integrations-header .section-label { color: var(--blue); }
.integrations-header .section-title { color: var(--black); max-width: 100%; }
.integrations-header .section-sub {
  color: var(--gray-500);
  margin: 16px 0 0;
  max-width: 380px;
  text-align: left;
}

.integrations-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  max-width: 420px;
}

.integration-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.integration-chip:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,107,255,0.1);
  color: var(--black);
  background: var(--white);
}

.integration-chip svg { flex-shrink: 0; }

.integrations-note {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 24px;
  display: block;
}

.integrations-note a {
  color: var(--blue);
  text-decoration: none;
}

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

@media (max-width: 900px) {
  .integrations-inner { grid-template-columns: 1fr; gap: 40px; }
  .integrations-header { text-align: center; }
  .integrations-header .section-sub { margin: 16px auto 0; text-align: center; }
  .integrations-right { justify-content: center; }
  .integrations-grid { justify-content: center; }
}

/* FAQ */
.faq {
  background: var(--gray-100);
  padding: 100px 78px;
  border-bottom: 1px solid #ebebeb;
}

.faq-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.faq-header .section-title {
    max-width: 100%;
}

.faq-header .section-sub {
    margin: 16px auto 0; 
    max-width: 100%;
    text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-300);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--blue); }

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--gray-500);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .stats-inner { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
  .integrations { padding: 72px 24px; }
  .faq { padding: 72px 24px; }
}