  :root {
    --blue-dark:  #1234b0;
    --blue-main:  #1a56db;
    --blue-light: #2fa8e0;
    --orange:     #f5844a;
    --orange-light: #f5a46e;
    --bg:         #f0f4fb;
    --bg2:        #e8eef8;
    --white:      #ffffff;
    --text:       #0f1c3f;
    --muted:      #5b6a8a;
    --border:     rgba(26,86,219,0.12);
    --card-shadow: 0 4px 24px rgba(18,52,176,0.10);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: center; gap: 2.4rem;
    padding: 0 5%;
    height: 72px;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(18,52,176,0.07);
  }

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

  .nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--blue-main); }

  .nav-cta {
    background: var(--blue-main);
    color: #fff !important;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600 !important;
    transition: background 0.2s, box-shadow 0.2s !important;
  }
  .nav-cta:hover { background: var(--blue-dark) !important; box-shadow: 0 4px 16px rgba(26,86,219,0.3); }

  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

  .mobile-menu {
    display: none; flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 5%; gap: 1rem;
    position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .mobile-menu.active { display: flex; }
  .mobile-menu a { color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d2585 0%, #1a56db 50%, #2fa8e0 100%);
    display: flex; align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  }

  .hero-blob {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,0.07);
    filter: blur(60px);
  }
  .hero-blob1 { width: 500px; height: 500px; top: -150px; right: -100px; animation: float 7s ease-in-out infinite; }
  .hero-blob2 { width: 300px; height: 300px; bottom: -50px; left: 5%; animation: float 9s ease-in-out infinite reverse; }

  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

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

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,132,74,0.2);
    border: 1px solid rgba(245,132,74,0.5);
    color: #ffc49b;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge::before { content: '●'; font-size: 0.45rem; animation: blink 1.5s infinite; color: var(--orange); }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

  h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  h1 em { font-style: normal; color: var(--orange-light); }

  .hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s 0.2s ease both;
    line-height: 1.75;
  }

  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-white {
    background: #fff;
    color: var(--blue-main);
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

  .btn-orange {
    background: var(--orange);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-orange:hover { background: #e06a30; transform: translateY(-2px); }

  .hero-stats {
    display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.4s ease both;
  }

  .stat-item { }
  .stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 2rem; font-weight: 800; color: #fff;
  }
  .stat-num span { color: var(--orange-light); }
  .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

  /* hero visual */
  .hero-visual {
    animation: fadeUp 0.8s 0.3s ease both;
    position: relative;
  }

  .hero-mockup {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  }

  .hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: flex; align-items: center; gap: 10px;
    animation: floatCard 4s ease-in-out infinite;
  }

  .hero-float-card.card1 { bottom: -20px; left: -20px; animation-delay: 0s; }
  .hero-float-card.card2 { top: 20px; right: -20px; animation-delay: 2s; }

  @keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

  .float-icon { font-size: 1.5rem; }
  .float-label { font-size: 0.72rem; color: var(--muted); font-weight: 500; }
  .float-value { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 800; color: var(--text); }

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

  /* ── TICKER ── */
  .ticker-wrap {
    background: var(--orange);
    color: #fff;
    padding: 0.65rem 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
  }
  @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

  /* ── SECTIONS ── */
  section { padding: 100px 5%; position: relative; }

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

  .section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--blue-main); margin-bottom: 0.8rem;
  }
  .section-tag::before { content: ''; width: 18px; height: 2px; background: var(--orange); display: block; border-radius: 2px; }

  h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1rem;
  }
  h2 em { font-style: normal; color: var(--blue-main); }
  h2 .orange { color: var(--orange); }

  .section-lead {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 3rem;
    line-height: 1.75;
  }

  /* ── PRODUCTS ── */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
  }

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

  .product-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue-main), var(--blue-light));
    opacity: 0;
    transition: opacity 0.3s;
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
    border-color: rgba(26,86,219,0.25);
  }
  .product-card:hover::after { opacity: 1; }

  .product-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .icon-blue   { background: rgba(26,86,219,0.1); }
  .icon-light  { background: rgba(47,168,224,0.1); }
  .icon-orange { background: rgba(245,132,74,0.1); }
  .icon-green  { background: rgba(16,185,129,0.1); }

  .product-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--text); margin-bottom: 0.6rem;
  }

  .product-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

  .product-features {
    list-style: none; margin-top: 1.2rem;
    display: flex; flex-direction: column; gap: 0.45rem;
  }
  .product-features li {
    font-size: 0.83rem; color: var(--muted);
    display: flex; align-items: center; gap: 8px;
  }
  .product-features li::before {
    content: '✓';
    color: var(--blue-main);
    font-weight: 700; font-size: 0.78rem; flex-shrink: 0;
  }

  /* ── GW SHOWCASE ── */
  .gw-section { background: var(--white); border-top: 1px solid var(--border); }

  .gw-header { text-align: center; margin-bottom: 3rem; }
  .gw-header .section-lead { margin: 0 auto; }

  .gw-tabs {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    justify-content: center; margin-bottom: 2rem;
  }

  .gw-tab {
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 0.82rem; font-weight: 600;
    color: var(--muted);
    cursor: pointer; transition: all 0.2s;
  }
  .gw-tab:hover, .gw-tab.active {
    background: var(--blue-main);
    color: #fff; border-color: var(--blue-main);
  }

  /* gw-screenshots replaced by carousel */

  .gw-segments {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }

  .segment-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem 0.8rem;
    transition: all 0.25s;
    text-align: center;
    cursor: default;
  }
  .segment-item:hover {
    border-color: var(--blue-main);
    background: #edf4ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26,86,219,0.12);
  }
  .segment-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
  .segment-icon svg { width: 44px; height: 44px; }
  .segment-item p { font-size: 0.73rem; font-weight: 700; color: var(--muted); line-height: 1.2; margin-top: 0.2rem; }

  /* ── GW AI ── */
  .gw-ai-section { background: linear-gradient(135deg, #0d2585 0%, #1a56db 100%); border: none; }

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

  .gw-ai-section .section-tag { color: var(--orange-light); }
  .gw-ai-section .section-tag::before { background: var(--orange); }
  .gw-ai-section h2 { color: #fff; }
  .gw-ai-section h2 em { color: var(--orange-light); }
  .gw-ai-section .section-lead { color: rgba(255,255,255,0.75); max-width: 100%; }

  .gw-ai-visual {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
  }

  .gw-module-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }

  .gw-module {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    transition: all 0.2s;
  }
  .gw-module:hover { background: rgba(255,255,255,0.13); border-color: rgba(245,132,74,0.4); }

  .gw-module-icon { font-size: 1.3rem; }
  .gw-module-info { flex: 1; }
  .gw-module-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
  .gw-module-desc { font-size: 0.76rem; color: rgba(255,255,255,0.6); }

  .gw-module-badge {
    font-size: 0.62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 0.2rem 0.6rem; border-radius: 100px;
    background: rgba(245,132,74,0.2);
    color: var(--orange-light);
    border: 1px solid rgba(245,132,74,0.4);
    white-space: nowrap;
  }

  /* ── AI CARDS ── */
  .ai-section { background: var(--bg2); border-top: 1px solid var(--border); }

  .ai-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px; margin: 0 auto;
  }

  .ai-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .ai-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
  }
  .ai-card:nth-child(1)::before { background: linear-gradient(90deg, var(--blue-main), var(--blue-light)); }
  .ai-card:nth-child(2)::before { background: linear-gradient(90deg, var(--orange), #f5c46e); }
  .ai-card:nth-child(3)::before { background: linear-gradient(90deg, #10b981, #34d399); }
  .ai-card:nth-child(4)::before { background: linear-gradient(90deg, #8b5cf6, #c4b5fd); }

  .ai-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }

  .ai-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
  .ai-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--text); margin-bottom: 0.6rem;
  }
  .ai-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

  /* ── WHY ── */
  .why-section { background: var(--white); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px; margin: 0 auto;
  }

  .why-item {
    padding: 1.8rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: all 0.3s;
  }
  .why-item:hover { border-color: rgba(26,86,219,0.3); background: #edf4ff; transform: translateY(-2px); }
  .why-emoji { font-size: 2rem; margin-bottom: 0.8rem; }
  .why-item h4 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
  .why-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

  /* ── PLANS ── */
  .plans-section { background: var(--bg2); border-top: 1px solid var(--border); }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: start;
    max-width: 1000px; margin: 0 auto;
  }

  .plan-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.2rem;
    transition: all 0.3s;
  }
  .plan-card.featured {
    border-color: var(--blue-main);
    box-shadow: 0 8px 40px rgba(26,86,219,0.15);
    position: relative;
  }
  .plan-card.featured::before {
    content: 'Mais Popular';
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 0.25rem 0.9rem; border-radius: 100px; white-space: nowrap;
  }
  .plan-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }

  .plan-name { font-family: 'Sora', sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 0.5rem; }
  .plan-price { font-family: 'Sora', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--text); margin-bottom: 1.5rem; }
  .plan-price small { font-size: 0.95rem; font-weight: 400; color: var(--muted); }

  .plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
  .plan-features li { font-size: 0.86rem; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
  .plan-features li::before { content: '✓'; color: var(--blue-main); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

  .plan-btn {
    display: block; text-align: center;
    padding: 0.85rem; border-radius: 10px;
    font-weight: 700; font-size: 0.9rem;
    text-decoration: none; transition: all 0.2s;
  }
  .plan-btn-outline { border: 2px solid var(--border); color: var(--blue-main); }
  .plan-btn-outline:hover { border-color: var(--blue-main); background: #edf4ff; }
  .plan-btn-solid { background: var(--blue-main); color: #fff; }
  .plan-btn-solid:hover { background: var(--blue-dark); box-shadow: 0 4px 20px rgba(26,86,219,0.3); }

  .plans-grid--compact {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1180px;
  }
  .plans-grid--compact .plan-card { padding: 1.6rem; }
  .plans-grid--compact .plan-price { font-size: 1.6rem; margin-bottom: 1rem; }
  .plans-grid--compact .plan-name { font-size: 0.76rem; }
  .plans-grid--compact .plan-features { gap: 0.5rem; margin-bottom: 1.4rem; }
  .plans-grid--compact .plan-features li { font-size: 0.8rem; }
  @media (max-width: 900px) {
    .plans-grid--compact { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .plans-grid--compact { grid-template-columns: 1fr; }
  }



  .icon-purple { background: rgba(139,92,246,0.12); }

  /* ── LEADFLOW ── */
  .leadflow-section { background: var(--white); }
  .lf-cats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
  }
  .lf-cat {
    border-radius: 18px;
    padding: 1.8rem;
    color: #fff;
  }
  .lf-cat h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    margin-bottom: 1rem;
  }
  .lf-cat ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
  .lf-cat ul li {
    font-size: 0.84rem; font-weight: 600;
    background: rgba(255,255,255,0.16);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
  }
  .lf-cat--prospeccao { background: linear-gradient(135deg,#1234b0,#1a56db); }
  .lf-cat--engajamento { background: linear-gradient(135deg,#c2660f,#f5844a); }
  .lf-cat--automacao { background: linear-gradient(135deg,#5b21b6,#8b5cf6); }
  .lf-cat--vendas { background: linear-gradient(135deg,#0f7b4d,#22c55e); }
  .lf-cat--workspace { background: linear-gradient(135deg,#334155,#64748b); }
  .lf-cat--marketing { background: linear-gradient(135deg,#0f7c82,#14b8a6); }
  .lf-cat--tarefas { background: linear-gradient(135deg,#9d174d,#ec4899); }
  .lf-cat--relatorios { background: linear-gradient(135deg,#4338ca,#6366f1); }


  .lf-subtag {
    text-align: center; font-family: 'Sora', sans-serif; font-weight: 800;
    font-size: 1.3rem; margin: 0 0 1.5rem;
  }

  /* ── COMBOS ── */
  .combos-section { background: var(--bg2); }
  .combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px; margin: 0 auto;
  }
  .combo-card {
    border-radius: 18px;
    padding: 2.2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-dark), #5b21b6);
  }
  .combo-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 1rem;
  }
  .combo-card h3 { font-family:'Sora',sans-serif; font-size:1.2rem; font-weight:700; margin-bottom: 0.8rem; }
  .combo-price { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; margin-bottom: 1.2rem; }
  .combo-price small { font-size: 0.85rem; font-weight: 400; opacity: 0.85; }
  .combo-card ul { list-style:none; display:flex; flex-direction:column; gap:0.5rem; margin-bottom: 1.6rem; }
  .combo-card ul li { font-size: 0.84rem; opacity: 0.92; }
  .combo-card ul li::before { content: '✓ '; }
  .combo-btn {
    display: block; text-align: center;
    background: #fff; color: var(--blue-dark) !important;
    padding: 0.85rem; border-radius: 10px;
    font-weight: 700; font-size: 0.9rem;
    text-decoration: none;
  }

  /* ── CONTACT ── */
  .contact-section { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 1100px; margin: 0 auto; }
  .contact-info { display: flex; flex-direction: column; gap: 1rem; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px; padding: 1.2rem;
    transition: border-color 0.2s;
  }
  .contact-item:hover { border-color: rgba(26,86,219,0.3); }
  .contact-item-icon { font-size: 1.4rem; }
  .contact-item-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 0.2rem; font-weight: 600; }
  .contact-item-value { font-size: 0.9rem; color: var(--text); font-weight: 500; line-height: 1.5; }

  .contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem;
  }

  .form-group { margin-bottom: 1.1rem; }
  .form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }
  .form-input {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px; padding: 0.75rem 1rem;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem; transition: border-color 0.2s; outline: none;
  }
  .form-input:focus { border-color: var(--blue-main); box-shadow: 0 0 0 3px rgba(26,86,219,0.1); }
  textarea.form-input { height: 110px; resize: vertical; }

  .form-submit {
    width: 100%;
    background: var(--blue-main);
    color: #fff; border: none;
    padding: 0.95rem; border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    cursor: pointer; transition: all 0.2s;
  }
  .form-submit:hover { background: var(--blue-dark); box-shadow: 0 4px 20px rgba(26,86,219,0.3); transform: translateY(-1px); }

  /* ── FOOTER ── */
  footer {
    background: var(--text);
    padding: 4rem 5% 2rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px; margin-left: auto; margin-right: auto;
  }

  .footer-logo { height: 38px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
  .footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; max-width: 260px; }

  .footer-col h4 { font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
  .footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-col ul a:hover { color: rgba(255,255,255,0.9); }

  .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0 0 1.5rem; max-width: 1200px; margin-left: auto; margin-right: auto; }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    max-width: 1200px; margin: 0 auto;
  }
  .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

  .social-links { display: flex; gap: 0.7rem; }
  .social-link {
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem;
    transition: all 0.2s;
  }
  .social-link:hover { border-color: var(--orange); color: var(--orange); }

  /* ── REVEAL ── */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: 0.1s; }
  .reveal-d2 { transition-delay: 0.2s; }
  .reveal-d3 { transition-delay: 0.3s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1500px) {
    .nav-links { gap: 1.1rem; }
    .nav-links a { font-size: 0.8rem; }
    .nav-dropdown-btn { font-size: 0.8rem !important; padding-left: 0.2rem !important; padding-right: 0.2rem !important; }
    .nav-cta { padding: 0.5rem 0.9rem !important; }
    .logo-img { height: 36px; }
  }
  @media (max-width: 800px) {
    .nav-links { display: none; }
    nav > .nav-cta { display: none; }
    .hamburger { display: block; }
  }
  @media (max-width: 960px) {
    .hero-layout { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .gw-ai-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .why-grid { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gw-screenshots { grid-template-columns: repeat(2,1fr); }
  }

  @media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gw-screenshots { grid-template-columns: 1fr; }
    section { padding: 70px 5%; }
    .hero { padding: 100px 5% 60px; }
  }

  /* ── GW SHOWCASE ── */
  .gw-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(18,52,176,0.10);
    max-width: 1100px;
    margin: 0 auto;
  }

  .gw-showcase-visual {
    position: relative;
    background: linear-gradient(145deg, #dce8fc 0%, #c8d8f5 50%, #dce8fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    min-height: 420px;
    overflow: hidden;
  }

  .gw-showcase-visual::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(26,86,219,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,86,219,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
  }

  .gw-showcase-glow {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(26,86,219,0.18) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .gw-showcase-img {
    position: relative; z-index: 1;
    width: 100%;
    max-width: 520px;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(18,52,176,0.25));
    animation: floatDevice 6s ease-in-out infinite;
  }

  @keyframes floatDevice {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }

  .gw-showcase-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
  }

  .gw-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26,86,219,0.08);
    color: var(--blue-main);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(26,86,219,0.18);
    width: fit-content;
    margin-bottom: 1.1rem;
  }

  .gw-showcase-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .gw-showcase-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.6rem;
  }

  .gw-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .gw-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.75rem;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .gw-feature-item:hover {
    border-color: rgba(26,86,219,0.3);
    box-shadow: 0 2px 12px rgba(26,86,219,0.08);
  }

  .gw-feature-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(26,86,219,0.09);
    color: var(--blue-main);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .gw-feature-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
    line-height: 1.2;
  }

  .gw-feature-item span {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.4;
  }

  @media (max-width: 820px) {
    .gw-showcase {
      grid-template-columns: 1fr;
    }
    .gw-showcase-visual {
      min-height: 240px;
      padding: 2rem 1.5rem;
    }
    .gw-showcase-info {
      padding: 2rem 1.5rem;
    }
    .gw-showcase-title { font-size: 1.25rem; }
    .gw-feature-grid { grid-template-columns: 1fr; }
  }

  /* ── NAV DROPDOWN ── */
  .nav-dropdown { position: relative; list-style: none; }

  .nav-dropdown-btn {
    background: none; border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.9rem; font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: flex; align-items: center; gap: 5px;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }
  .nav-dropdown-btn:hover, .nav-dropdown:hover .nav-dropdown-btn {
    color: var(--blue-main); border-color: var(--blue-main);
    background: rgba(26,86,219,0.05);
  }
  .nav-dropdown-btn svg { transition: transform 0.25s; }
  .nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }

  .nav-dropdown-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(18,52,176,0.14);
    min-width: 220px;
    padding: 6px;
    opacity: 0; visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }

  .nav-dropdown-menu a {
    display: flex; align-items: center; gap: 9px;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem; font-weight: 500;
    color: var(--text) !important;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
  }
  .nav-dropdown-menu a:hover { background: var(--bg); color: var(--blue-main) !important; }
  .nav-dropdown-menu a svg { color: var(--muted); flex-shrink: 0; }

  .nav-dropdown-divider {
    height: 1px; background: var(--border); margin: 5px 8px;
  }

  .nav-dropdown-highlight {
    color: var(--orange) !important;
    font-weight: 600 !important;
  }
  .nav-dropdown-highlight svg { color: var(--orange) !important; }
  .nav-dropdown-highlight:hover { background: rgba(245,132,74,0.07) !important; }

  /* Mobile menu additions */
  .mobile-menu-divider {
    height: 1px; background: rgba(255,255,255,0.15); margin: 0.3rem 0;
  }
  .mobile-menu-access {
    font-size: 0.9rem !important;
    opacity: 0.9;
  }
  .mobile-menu-highlight {
    color: #f5a46e !important;
    font-weight: 600 !important;
  }


  /* ══════════════════════════════════════
     ADMIN PANEL
  ══════════════════════════════════════ */


  #admin-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(5,15,50,0.55);
    backdrop-filter: blur(3px);
    z-index: 9100;
    align-items: center;
    justify-content: center;
  }
  #admin-overlay.open { display: flex; }

  #admin-login, #admin-panel {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(5,15,50,0.3);
    padding: 2.5rem;
    width: 100%;
    animation: adminFadeIn 0.25s ease;
  }
  #admin-login { max-width: 380px; }
  #admin-panel { max-width: 820px; max-height: 92vh; overflow-y: auto; }

  @keyframes adminFadeIn {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .admin-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8eef8;
  }
  .admin-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem; font-weight: 800;
    color: #0d2585;
    display: flex; align-items: center; gap: 8px;
  }
  .admin-close {
    width: 32px; height: 32px;
    border-radius: 8px; border: 1px solid #e0e7f0;
    background: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #666; font-size: 1.1rem;
    transition: all 0.15s;
  }
  .admin-close:hover { background: #fee; color: #c00; border-color: #fcc; }

  /* Login form */
  .admin-login-logo {
    text-align: center; margin-bottom: 1.5rem;
  }
  .admin-login-logo span {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem; font-weight: 800; color: #0d2585;
  }
  .admin-login-logo small { display: block; color: #888; font-size: 0.78rem; margin-top: 2px; }

  .admin-field { margin-bottom: 1rem; }
  .admin-field label { display: block; font-size: 0.78rem; font-weight: 600; color: #555; margin-bottom: 5px; }
  .admin-field input {
    width: 100%; padding: 0.65rem 0.9rem;
    border: 1.5px solid #dde5f0;
    border-radius: 10px; font-size: 0.9rem;
    outline: none; box-sizing: border-box;
    transition: border-color 0.2s;
    font-family: inherit;
  }
  .admin-field input:focus { border-color: #1a56db; }

  .admin-btn {
    width: 100%; padding: 0.75rem;
    background: #1a56db; color: #fff;
    border: none; border-radius: 10px;
    font-size: 0.95rem; font-weight: 700;
    cursor: pointer; font-family: inherit;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .admin-btn:hover { background: #0d2585; box-shadow: 0 4px 16px rgba(26,86,219,0.3); }
  .admin-error { color: #c00; font-size: 0.8rem; margin-top: 0.5rem; display: none; }

  /* Tabs */
  .admin-tabs {
    display: flex; gap: 6px; margin-bottom: 1.5rem;
    border-bottom: 1px solid #e8eef8; padding-bottom: 0;
  }
  .admin-tab {
    padding: 0.55rem 1.1rem;
    border: none; background: none;
    font-family: inherit; font-size: 0.85rem; font-weight: 600;
    color: #888; cursor: pointer; border-radius: 8px 8px 0 0;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
  }
  .admin-tab:hover { color: #1a56db; }
  .admin-tab.active { color: #1a56db; border-bottom-color: #1a56db; background: rgba(26,86,219,0.04); }

  .admin-tab-content { display: none; }
  .admin-tab-content.active { display: block; }

  /* Section title */
  .admin-section-title {
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: #aaa; margin-bottom: 0.8rem;
  }

  /* Text editor list */
  .admin-text-item {
    background: #f7f9fc; border: 1px solid #e0e8f4;
    border-radius: 10px; padding: 0.9rem 1rem;
    margin-bottom: 0.7rem;
    transition: border-color 0.15s;
  }
  .admin-text-item:hover { border-color: #a8bde0; }
  .admin-text-item label { font-size: 0.73rem; font-weight: 700; color: #1a56db; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px; }
  .admin-text-item textarea, .admin-text-item input[type=text] {
    width: 100%; border: 1px solid #dde5f0; border-radius: 7px;
    padding: 0.5rem 0.7rem; font-size: 0.85rem; font-family: inherit;
    resize: vertical; outline: none; box-sizing: border-box;
    transition: border-color 0.15s; background: #fff;
  }
  .admin-text-item textarea:focus, .admin-text-item input[type=text]:focus { border-color: #1a56db; }
  .admin-apply-btn {
    margin-top: 6px; padding: 4px 14px;
    background: #1a56db; color: #fff;
    border: none; border-radius: 6px; font-size: 0.78rem; font-weight: 600;
    cursor: pointer; font-family: inherit;
    transition: background 0.15s;
  }
  .admin-apply-btn:hover { background: #0d2585; }

  /* Nav editor */
  .admin-nav-item {
    display: flex; align-items: center; gap: 8px;
    background: #f7f9fc; border: 1px solid #e0e8f4;
    border-radius: 10px; padding: 0.7rem 0.9rem;
    margin-bottom: 0.6rem;
  }
  .admin-nav-item input { flex: 1; border: 1px solid #dde5f0; border-radius: 6px; padding: 0.4rem 0.6rem; font-size: 0.83rem; font-family: inherit; outline: none; }
  .admin-nav-item input:focus { border-color: #1a56db; }
  .admin-nav-remove {
    width: 28px; height: 28px; border-radius: 6px;
    border: 1px solid #fcc; background: #fff0f0;
    color: #c00; cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s; flex-shrink: 0;
  }
  .admin-nav-remove:hover { background: #fee; }
  .admin-nav-add {
    display: flex; gap: 8px; margin-top: 0.7rem;
  }
  .admin-nav-add input { flex: 1; border: 1.5px solid #dde5f0; border-radius: 8px; padding: 0.5rem 0.8rem; font-size: 0.85rem; font-family: inherit; outline: none; }
  .admin-nav-add input:focus { border-color: #1a56db; }
  .admin-nav-add button {
    padding: 0.5rem 1rem; background: #1a56db; color: #fff;
    border: none; border-radius: 8px; font-weight: 700; font-size: 0.85rem;
    cursor: pointer; font-family: inherit;
  }
  .admin-nav-update-btn {
    margin-top: 1rem; padding: 0.6rem 1.5rem;
    background: #0d2585; color: #fff; border: none; border-radius: 8px;
    font-weight: 700; font-size: 0.85rem; cursor: pointer; font-family: inherit;
    transition: background 0.2s;
  }
  .admin-nav-update-btn:hover { background: #1a56db; }

  /* Export / Clone */
  .admin-action-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
  .admin-action-card {
    background: #f7f9fc; border: 1px solid #e0e8f4;
    border-radius: 12px; padding: 1.4rem;
    text-align: center;
  }
  .admin-action-card h4 { font-size: 0.95rem; font-weight: 700; color: #0d2585; margin-bottom: 6px; }
  .admin-action-card p { font-size: 0.78rem; color: #888; margin-bottom: 1rem; line-height: 1.5; }
  .admin-action-card .admin-action-icon { font-size: 2rem; margin-bottom: 0.6rem; }
  .admin-action-btn {
    padding: 0.6rem 1.2rem; border: none; border-radius: 8px;
    font-weight: 700; font-size: 0.83rem; cursor: pointer; font-family: inherit;
    transition: all 0.15s;
  }
  .admin-action-btn.export { background: #1a56db; color: #fff; }
  .admin-action-btn.export:hover { background: #0d2585; }
  .admin-action-btn.clone { background: #f5844a; color: #fff; }
  .admin-action-btn.clone:hover { background: #e06830; }

  .admin-toast {
    position: fixed; bottom: 70px; right: 18px;
    background: #1a56db; color: #fff;
    padding: 0.6rem 1.2rem; border-radius: 10px;
    font-size: 0.83rem; font-weight: 600;
    box-shadow: 0 4px 20px rgba(26,86,219,0.35);
    z-index: 9999;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
  }
  .admin-toast.show { opacity: 1; transform: translateY(0); }

  /* Editable highlight mode */
  .admin-editable-active [data-editable]:hover {
    outline: 2px dashed #1a56db;
    outline-offset: 3px;
    cursor: text;
    border-radius: 3px;
  }
  [data-editable].editing {
    outline: 2px solid #1a56db !important;
    outline-offset: 3px;
    border-radius: 3px;
    background: rgba(26,86,219,0.04);
  }


  /* ── INLINE EDIT MODE ── */
  #admin-inline-bar {
    position: fixed; top: 0; left: 0; right: 0;
    background: linear-gradient(90deg, #0d2585, #1a56db);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 42px;
    z-index: 8999;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(13,37,133,0.3);
  }
  #admin-inline-bar.visible { display: flex; }
  #admin-inline-bar span { opacity: 0.85; }
  #admin-inline-bar .bar-actions { display: flex; gap: 8px; align-items: center; }
  .bar-btn {
    padding: 4px 14px; border-radius: 6px; border: none;
    font-size: 0.78rem; font-weight: 700; cursor: pointer;
    font-family: inherit; transition: all 0.15s;
  }
  .bar-btn.open-panel { background: rgba(255,255,255,0.2); color: #fff; }
  .bar-btn.open-panel:hover { background: rgba(255,255,255,0.35); }
  .bar-btn.exit { background: rgba(255,80,80,0.3); color: #fff; }
  .bar-btn.exit:hover { background: rgba(255,80,80,0.5); }

  body.admin-mode { padding-top: 42px; }

  /* Editable elements hover */
  body.admin-mode [data-editable]:hover {
    outline: 2px dashed rgba(26,86,219,0.6);
    outline-offset: 4px;
    cursor: text;
    border-radius: 4px;
    background: rgba(26,86,219,0.03);
  }
  body.admin-mode [data-editable]:focus {
    outline: 2px solid #1a56db !important;
    outline-offset: 4px;
    border-radius: 4px;
    background: rgba(26,86,219,0.05);
  }
  body.admin-mode [data-editable] { transition: outline 0.15s, background 0.15s; }

/* ── Chat widget (floating support button) ── */
.pontti-chat-widget{position:fixed;bottom:24px;right:24px;z-index:2147483647;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;}
.pontti-chat-widget .pontti-chat-frame{width:380px;height:560px;border:0;border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.2);transition:transform .25s ease,opacity .25s ease;transform-origin:bottom right;background:#fff;}
.pontti-chat-widget .pontti-chat-fab{width:56px;height:56px;}
.pontti-chat-widget .pontti-chat-fab svg{width:28px;height:28px;}
@media (max-width:1400px){
  .pontti-chat-widget{bottom:18px;right:18px;}
}
@media (max-width:900px){
  .pontti-chat-widget{bottom:14px;right:14px;}
  .pontti-chat-widget .pontti-chat-frame{width:min(380px, calc(100vw - 28px));height:min(560px, 74vh);}
  .pontti-chat-widget .pontti-chat-fab{width:50px;height:50px;}
  .pontti-chat-widget .pontti-chat-fab svg{width:24px;height:24px;}
}
@media (max-width:480px){
  .pontti-chat-widget{bottom:10px;right:10px;}
  .pontti-chat-widget .pontti-chat-frame{width:calc(100vw - 20px);height:min(520px, 72vh);}
}
