/* ============================================
   BIZPILOT AI — WEBSITE STYLES
   Color: Indigo/Blue (professional, finance)
   ============================================ */

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

:root {
  --brand: #4F46E5;
  --brand-dark: #3730A3;
  --brand-light: #EEF2FF;
  --brand-mid: #6366F1;
  --accent: #06B6D4;
  --accent2: #10B981;
  --text: #0F172A;
  --text-2: #475569;
  --text-3: #94A3B8;
  --bg: #FAFAFA;
  --bg-alt: #F1F5F9;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --wa-green: #25D366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(79,70,229,0.10);
  --shadow-lg: 0 12px 48px rgba(79,70,229,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  flex-shrink: 0;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.logo-icon-sm { width: 30px; height: 30px; border-radius: 8px; }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

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

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

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}

.btn-wa-sm {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--wa-green);
  color: white;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-wa-sm:hover { background: #1EB55A; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 50%, #312E81 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(99,102,241,0.25);
  border: 1px solid rgba(165,180,252,0.3);
  color: #A5B4FC;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #818CF8, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: white;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}

.btn-primary:hover { background: #1EB55A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
}

.btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: white;
}

.hero-stats span { font-size: 0.8rem; color: #94A3B8; }

.stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-direction: row !important;
}

/* ============ PHONE MOCKUP ============ */
.hero-phone, .summary-phone {
  flex-shrink: 0;
}

.phone-frame {
  width: 260px;
  background: #1C1C1E;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.08);
}

.phone-notch {
  width: 80px; height: 22px;
  background: #1C1C1E;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.phone-header-bar {
  background: #075E54;
  border-radius: 16px 16px 0 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phb-avatar {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: white;
  flex-shrink: 0;
}

.phb-info strong { display: block; font-size: 0.82rem; color: white; }
.phb-info span { font-size: 0.72rem; color: #A8D5A2; }

.phone-chat {
  background: #ECE5DD;
  border-radius: 0 0 16px 16px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 320px;
  max-height: 380px;
  overflow-y: auto;
}

.phone-chat::-webkit-scrollbar { width: 3px; }
.phone-chat::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

.chat-bubble {
  max-width: 85%;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.75rem;
  line-height: 1.5;
  position: relative;
}

.chat-bubble p { margin-bottom: 4px; }
.chat-bubble p:last-of-type { margin-bottom: 0; }
.chat-bubble strong { font-weight: 700; }
.chat-bubble em { font-style: italic; }

.chat-bubble.incoming {
  background: white;
  align-self: flex-start;
  border-top-left-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.chat-bubble.outgoing {
  background: #D9FDD3;
  align-self: flex-end;
  border-top-right-radius: 3px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.chat-time {
  font-size: 0.65rem;
  color: #999;
  display: block;
  text-align: right;
  margin-top: 3px;
}

/* ============ PROOF STRIP ============ */
.proof-strip {
  background: var(--brand-light);
  border-top: 1px solid #C7D2FE;
  border-bottom: 1px solid #C7D2FE;
  padding: 18px 0;
}

.proof-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.proof-inner > span {
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 500;
  white-space: nowrap;
}

.proof-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-tags span {
  background: white;
  border: 1px solid #C7D2FE;
  color: var(--brand);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }

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

.section-label {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-2);
}

/* ============ HOW IT WORKS ============ */
.how-it-works { background: white; }

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
  margin-bottom: 12px;
}

.step-icon {
  width: 56px; height: 56px;
  background: var(--brand-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--text-3);
  align-self: center;
  padding: 0 4px;
  margin-top: -24px;
}

/* ============ FEATURES ============ */
.features { background: var(--bg-alt); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.25s;
}

.feature-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feature-card.featured {
  border-color: var(--brand);
  background: linear-gradient(135deg, #EEF2FF, #F5F3FF);
  grid-row: span 1;
}

.feat-icon {
  width: 50px; height: 50px;
  background: var(--brand-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin-bottom: 16px;
}

.feature-card.featured .feat-icon {
  background: var(--brand);
  color: white;
}

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

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.feat-example {
  font-size: 0.78rem;
  color: var(--brand);
  background: var(--brand-light);
  border-radius: 8px;
  padding: 7px 10px;
  font-style: italic;
  font-weight: 500;
}

/* ============ ASK SECTION ============ */
.ask-section { background: white; }

.ask-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.ask-group {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
}

.ask-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand);
  margin-bottom: 14px;
}

.ask-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ask-group li {
  font-size: 0.85rem;
  color: var(--text-2);
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-style: italic;
}

/* ============ FOR WHO ============ */
.for-who { background: var(--bg-alt); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.who-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.25s;
}

.who-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.who-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.who-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.who-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============ SUMMARY SECTION ============ */
.summary-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
}

.summary-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 80px;
}

.summary-content .section-label {
  background: rgba(99,102,241,0.25);
  color: #A5B4FC;
  border: 1px solid rgba(165,180,252,0.2);
}

.summary-content h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  margin-top: 14px;
}

.summary-content > p {
  color: #94A3B8;
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.summary-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #CBD5E1;
}

.summary-list li svg {
  color: var(--accent2);
  flex-shrink: 0;
}

/* ============ PRICING ============ */
.pricing { background: white; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}

.price-card-featured {
  background: linear-gradient(145deg, var(--brand), var(--brand-mid));
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent2);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-2);
  margin-bottom: 8px;
}

.price-card-featured .price-label { color: rgba(255,255,255,0.7); }

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
}

.price-card-featured .price-amount { color: white; }
.price-card-featured .price-amount span { color: rgba(255,255,255,0.7); }

.price-sub {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 24px;
}

.price-card-featured .price-sub { color: rgba(255,255,255,0.7); }

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

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.price-features li svg { color: var(--brand); flex-shrink: 0; }
.price-card-featured .price-features li { color: rgba(255,255,255,0.9); }
.price-card-featured .price-features li svg { color: #A5B4FC; }

.price-feat-off { opacity: 0.45; }
.price-feat-off svg { color: var(--text-3) !important; }

.price-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.price-btn-primary {
  background: white;
  color: var(--brand);
}

.price-btn-primary:hover { background: #F5F3FF; transform: translateY(-2px); }

.price-btn-outline {
  border: 2px solid var(--border);
  color: var(--text);
}

.price-btn-outline:hover { border-color: var(--brand); color: var(--brand); }

/* ============ FAQ ============ */
.faq { background: var(--bg-alt); }

.faq-inner { max-width: 740px; margin: 0 auto; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--brand); }

.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-3);
}

.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--brand); }
.faq-item.open .faq-q { color: var(--brand); }

.faq-a {
  display: none;
  padding: 0 4px 20px;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

/* ============ CTA ============ */
.cta-section {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%);
  padding: 96px 0;
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: white;
  margin-bottom: 16px;
}

.cta-inner > p {
  color: #94A3B8;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.btn-large { padding: 16px 32px; font-size: 1.05rem; }

.cta-note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #64748B;
}

/* ============ FOOTER ============ */
.footer {
  background: #0F172A;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-brand p {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94A3B8;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #64748B;
  font-size: 0.875rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 0.82rem;
  color: #475569;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  text-decoration: none;
  font-size: 0.82rem;
  color: #475569;
  transition: color 0.2s;
}

.footer-legal a:hover { color: #94A3B8; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-phone { display: flex; justify-content: center; }
  .summary-layout { grid-template-columns: 1fr; }
  .summary-phone { display: flex; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .step-arrow { display: none; }
  .steps-grid { gap: 16px; justify-content: center; }
  .price-card-featured { transform: none; }
}

@media (max-width: 680px) {
  .nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    gap: 16px;
    z-index: 99;
  }

  .nav.open { display: flex; }
  .hamburger { display: flex; }

  .header-right .btn-wa-sm span { display: none; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .hero { padding: 100px 0 48px; }

  .proof-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .ask-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .phone-frame { width: 240px; }
}
