:root{
  --bg:#f8fafc;
  --surface:#ffffff;
  --surface-soft:#eff6ff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --primary:#2563eb;
  --primary-dark:#1d4ed8;
  --shadow:0 12px 30px rgba(15,23,42,0.08);
  --radius:18px;
  --max-width:1100px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  margin:0;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

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

.container{
  max-width:var(--max-width);
  margin:auto;
  padding:0 20px;
}

/* Header */

.site-header{
  background:rgba(255,255,255,0.94);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(10px);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  min-height:74px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text);
  font-weight:700;
  font-size:18px;
  letter-spacing:-0.02em;
}

.logo-mark{
  width:36px;
  height:36px;
  border-radius:10px;
  background:linear-gradient(135deg,#60a5fa,#2563eb);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:16px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(37,99,235,0.25);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.nav-links a{
  color:#334155;
  font-weight:500;
  font-size:15px;
}

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

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  background:var(--primary);
  color:white !important;
  font-weight:600;
  transition:all .2s ease;
  box-shadow:0 8px 20px rgba(37,99,235,0.22);
}

.nav-cta:hover{
  background:var(--primary-dark);
  transform:translateY(-1px);
}

/* Shared buttons */

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:999px;
  font-weight:600;
  transition:all .2s ease;
  text-decoration:none;
  border:1px solid transparent;
}

.button-primary{
  background:var(--primary);
  color:#ffffff;
  border-color:var(--primary);
  box-shadow:0 8px 20px rgba(37,99,235,0.18);
}

.button-primary:hover{
  background:var(--primary-dark);
  border-color:var(--primary-dark);
  color:#ffffff;
  transform:translateY(-1px);
}

.button-secondary{
  background:#ffffff;
  color:var(--primary-dark);
  border:1px solid #cbd5e1;
}

.button-secondary:hover{
  background:#f8fafc;
  border-color:#94a3b8;
  color:var(--primary-dark);
  transform:translateY(-1px);
}

/* Homepage hero */

.hero{
  background:linear-gradient(135deg,#2563eb 0%, #1d4ed8 45%, #1e3a8a 100%);
  color:white;
  padding:88px 0 76px;
  overflow:hidden;
}

.hero-container{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:56px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:18px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.2);
  font-size:14px;
  font-weight:600;
  letter-spacing:0.01em;
}

.hero h1{
  font-size:clamp(2.4rem,5vw,4rem);
  line-height:1.05;
  letter-spacing:-0.04em;
  margin:0 0 18px;
  max-width:650px;
}

.hero p{
  font-size:19px;
  margin:0 0 20px;
  opacity:0.94;
  max-width:620px;
}

.hero-support{
  font-size:16px;
  opacity:0.88;
  max-width:620px;
  margin-bottom:32px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-graphic{
  display:flex;
  justify-content:center;
}

.hero-graphic img{
  max-width:460px;
  width:100%;
  filter:drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

/* Homepage sections */

.section{
  padding:76px 0;
}

.home-section-heading{
  max-width:760px;
  margin-bottom:34px;
}

.home-section-heading h2{
  font-size:clamp(2rem,4vw,2.6rem);
  letter-spacing:-0.03em;
  line-height:1.1;
  margin:0 0 14px;
}

.home-section-heading p{
  margin:0;
  font-size:18px;
  color:var(--muted);
}

/* Service cards */

.services{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.card{
  background:var(--surface);
  padding:30px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  transition:all .2s ease;
  box-shadow:var(--shadow);
  display:block;
  color:inherit;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(15,23,42,0.12);
  border-color:#cbd5e1;
}

.card:hover .card-link{
  color:var(--primary-dark);
}

.icon{
  width:52px;
  height:52px;
  border-radius:14px;
  background:var(--surface-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.card h3{
  margin:0 0 12px;
  font-size:22px;
  letter-spacing:-0.02em;
}

.card p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
}

.card-link{
  color:var(--primary);
  font-weight:600;
  font-size:15px;
}

/* Process section */

.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.process-card{
  background:white;
  border:1px solid var(--line);
  border-radius:16px;
  padding:26px;
  box-shadow:var(--shadow);
}

.process-number{
  width:34px;
  height:34px;
  border-radius:999px;
  background:var(--primary);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14px;
  margin-bottom:16px;
}

.process-card h3{
  margin:0 0 10px;
  font-size:20px;
  letter-spacing:-0.02em;
}

.process-card p{
  margin:0;
  color:var(--muted);
}

/* About section */

.about{
  background:white;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:34px;
  align-items:start;
}

.about-panel,
.about-side{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:var(--shadow);
}

.about-panel h2,
.about-side h3{
  margin-top:0;
  letter-spacing:-0.02em;
}

.about-panel p,
.about-side p,
.about-side li{
  color:var(--muted);
}

.about-side ul{
  padding-left:18px;
  margin:0;
}

/* CTA */

.cta-band{
  padding:76px 0;
}

.cta-panel{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  border-radius:24px;
  padding:40px;
  color:white;
  box-shadow:0 20px 40px rgba(37,99,235,0.25);
}

.cta-panel h2{
  margin:0 0 12px;
  font-size:clamp(2rem,4vw,2.6rem);
  letter-spacing:-0.03em;
  line-height:1.1;
}

.cta-panel p{
  margin:0 0 24px;
  max-width:700px;
  color:rgba(255,255,255,0.92);
  font-size:18px;
}

.cta-panel .button{
  background:white;
  color:#1d4ed8;
  border-color:white;
}

.cta-panel .button:hover{
  background:#eff6ff;
  border-color:#eff6ff;
}

/* Footer */

.site-footer{
  background:white;
  border-top:1px solid var(--line);
  padding:28px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:#64748b;
  font-size:15px;
}

/* Shared service page layout */

.page-hero{
  background:#ffffff;
  border-bottom:1px solid var(--line);
  padding:56px 0 40px;
}

.page-hero .eyebrow{
  background:var(--surface-soft);
  border:1px solid #dbeafe;
  color:var(--primary-dark);
}

.page-hero h1{
  margin:0 0 14px;
  font-size:clamp(2.2rem,4vw,3.4rem);
  line-height:1.08;
  letter-spacing:-0.04em;
  max-width:760px;
}

.page-hero p{
  margin:0;
  max-width:760px;
  font-size:18px;
  color:var(--muted);
}

.page-wrap{
  padding:48px 0 76px;
}

.page-grid{
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(280px,0.95fr);
  gap:32px;
  align-items:start;
}

.content-stack{
  display:grid;
  gap:24px;
}

.panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:var(--shadow);
}

.panel h2{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.15;
  letter-spacing:-0.03em;
}

.panel h3{
  margin:28px 0 10px;
  font-size:20px;
  letter-spacing:-0.02em;
}

.panel p{
  margin:0 0 16px;
  color:var(--muted);
}

.panel p:last-child{
  margin-bottom:0;
}

.panel ul{
  margin:0 0 18px 20px;
  padding:0;
  color:var(--muted);
}

.panel ul li{
  margin-bottom:8px;
}

.panel p + ul{
  margin-top:12px;
}

.panel ul + p{
  margin-top:18px;
}

.scope-group + .scope-group{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid #e5e7eb;
}

.scope-group h3{
  margin-top:0;
}

.meta-list{
  display:grid;
  gap:14px;
}

.meta-item{
  padding:14px 0;
  border-bottom:1px solid var(--line);
}

.meta-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.meta-label{
  display:block;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:#64748b;
  margin-bottom:6px;
}

.meta-value{
  color:var(--text);
  font-weight:600;
}

.price{
  font-size:30px;
  line-height:1;
  letter-spacing:-0.03em;
  color:var(--text);
  font-weight:700;
}

.note{
  font-size:14px;
  color:#64748b;
}

.sidebar-stack{
  display:grid;
  gap:20px;
}

.sidebar-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.sidebar-card h3{
  margin:0 0 12px;
  font-size:18px;
  letter-spacing:-0.02em;
}

.sidebar-card p{
  margin:0 0 14px;
  color:var(--muted);
}

.sidebar-card p:last-child{
  margin-bottom:0;
}

.check-list{
  list-style:none;
  padding:0;
  margin:0;
}

.check-list li{
  position:relative;
  padding-left:22px;
  color:var(--muted);
}

.check-list li + li{
  margin-top:10px;
}

.check-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--primary);
  font-weight:700;
}

.page-cta{
  margin-top:8px;
}

.hero-cta{
  display:flex;
  gap:12px;
  margin-top:20px;
  flex-wrap:wrap;
}

/* GA4 audit page */

body.ga4-page .page-hero{
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(96,165,250,0.16), transparent 30%),
    linear-gradient(135deg, #eff6ff 0%, #f8fbff 45%, #ffffff 100%);
  border-bottom:1px solid #dbeafe;
}

.ga4-hero{
  padding:72px 0 56px;
}

.ga4-hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:48px;
  align-items:center;
}

.ga4-hero-copy h1{
  margin-bottom:18px;
}

.ga4-hero-copy .hero-lead{
  max-width:640px;
}

.service-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  background:#dbeafe;
  color:#1d4ed8;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
}

.service-tag-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:#2563eb;
  display:inline-block;
}

.ga4-hero-points{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  margin:28px 0 0;
}

.ga4-hero-point{
  background:rgba(255,255,255,0.82);
  border:1px solid #dbeafe;
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 30px rgba(37,99,235,0.06);
}

.ga4-hero-point strong{
  display:block;
  font-size:16px;
  color:#111827;
  margin-bottom:8px;
  line-height:1.35;
}

.ga4-hero-point span{
  display:block;
  font-size:15px;
  color:#4b5563;
  line-height:1.6;
}

.ga4-hero-visual{
  background:linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border:1px solid #dbeafe;
  border-radius:28px;
  padding:20px;
  box-shadow:0 20px 50px rgba(37,99,235,0.08);
}

.ga4-hero-visual svg{
  width:100%;
  height:auto;
  display:block;
}

.section-heading{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.section-heading h2{
  margin:0;
}

.section-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background:linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  border:1px solid #bfdbfe;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:#2563eb;
  box-shadow:0 8px 20px rgba(37,99,235,0.08);
}

.section-icon svg{
  width:20px;
  height:20px;
  display:block;
  stroke:currentColor;
}

.ga4-signal-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.ga4-signal-card{
  background:#f8fbff;
  border:1px solid #dbeafe;
  border-radius:18px;
  padding:20px;
}

.ga4-signal-card h3{
  font-size:16px;
  margin-bottom:10px;
  color:#111827;
}

.ga4-signal-card p{
  margin:0;
  font-size:15px;
  color:#4b5563;
  line-height:1.6;
}

.deliverable-box{
  background:linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border:1px solid #bfdbfe;
  border-radius:20px;
  padding:24px;
  margin-top:22px;
}

.deliverable-box h3{
  margin-bottom:12px;
  color:#1d4ed8;
}

.deliverable-box ul{
  margin:0;
  padding-left:20px;
}

.sidebar-card.highlight-card{
  background:linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border:1px solid #bfdbfe;
}

.audit-score{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:#1d4ed8;
  margin-bottom:12px;
}

.audit-score-badge{
  width:40px;
  height:40px;
  border-radius:50%;
  background:#dbeafe;
  color:#1d4ed8;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

/* Accessibility focus */

a:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible,
.card:focus-visible{
  outline:3px solid rgba(37,99,235,0.35);
  outline-offset:3px;
  border-radius:12px;
}

/* Responsive */

@media (max-width:960px){
  .ga4-hero-grid,
  .ga4-signal-grid,
  .ga4-hero-points{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .hero-container,
  .about-grid,
  .services,
  .process-grid,
  .page-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding:70px 0 56px;
  }

  .hero-graphic{
    order:2;
  }

  .hero-text{
    order:1;
  }

  .section,
  .cta-band{
    padding:58px 0;
  }

  .page-wrap{
    padding:40px 0 58px;
  }

  .panel,
  .sidebar-card{
    padding:24px;
  }
}

@media (max-width:640px){
  .nav{
    align-items:flex-start;
    flex-direction:column;
    padding:16px 0;
  }

  .nav-links{
    gap:14px;
  }

  .hero p{
    font-size:18px;
  }

  .card,
  .process-card,
  .about-panel,
  .about-side,
  .cta-panel{
    padding:24px;
  }
}
.section{
  padding: 72px 0;
}

.hero{
  padding: 72px 0 56px;
}

.hero-container{
  gap: 48px;
}

.hero-text h1{
  margin: 0 0 18px;
}

.hero-text p{
  margin: 0 0 18px;
}

.hero-support{
  margin-top: 18px;
  padding: 18px 20px;
}

.hero-actions{
  margin-top: 24px;
  gap: 14px;
}

.home-section-heading,
.how-it-works-intro{
  max-width: 720px;
  margin: 0 0 28px;
}

.home-section-heading h2,
.how-it-works-intro h2,
.about-panel h2,
.cta-panel h2{
  margin: 0 0 12px;
}

.home-section-heading p,
.how-it-works-intro p{
  margin: 0;
  line-height: 1.65;
}

.services,
.process-grid,
.about-grid{
  gap: 20px;
}

.card,
.process-card,
.about-side,
.about-panel,
.cta-panel{
  padding: 24px;
}

.card h3,
.process-card h3,
.about-side h3{
  margin: 0 0 10px;
}

.card p,
.process-card p,
.about-panel p,
.about-side li,
.cta-panel p{
  line-height: 1.65;
}

.card-link{
  margin-top: 16px;
}

.process-number{
  margin-bottom: 14px;
}

.about-panel p + p{
  margin-top: 14px;
}

.about-side ul{
  margin: 12px 0 0;
  padding-left: 18px;
}

.cta-band{
  padding: 0 0 72px;
}

.cta-panel .button{
  margin-top: 18px;
}

.site-footer{
  padding: 24px 0;
}
/* ===== Homepage spacing tighten-up ===== */

.site-header{
  padding: 0;
}

.nav{
  padding: 14px 20px;
}

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

.hero-container{
  gap: 32px;
  align-items: center;
}

.hero-text h1{
  margin: 10px 0 14px;
  line-height: 1.12;
}

.hero-text p{
  margin: 0 0 14px;
  line-height: 1.6;
}

.eyebrow{
  display: inline-block;
  margin-bottom: 6px;
}

.hero-support{
  margin-top: 12px;
  padding: 14px 16px;
  line-height: 1.6;
}

.hero-actions{
  margin-top: 18px;
  gap: 12px;
}

.section{
  padding: 52px 0;
}

.home-section-heading,
.how-it-works-intro{
  max-width: 680px;
  margin: 0 0 22px;
}

.home-section-heading h2,
.how-it-works-intro h2,
.about-panel h2,
.cta-panel h2{
  margin: 0 0 10px;
  line-height: 1.15;
}

.home-section-heading p,
.how-it-works-intro p,
.about-panel p,
.cta-panel p{
  margin: 0;
  line-height: 1.6;
}

.services,
.process-grid,
.about-grid{
  gap: 16px;
}

.card,
.process-card,
.about-panel,
.about-side,
.cta-panel{
  padding: 20px;
}

.icon{
  margin-bottom: 12px;
}

.card h3,
.process-card h3,
.about-side h3{
  margin: 0 0 8px;
  line-height: 1.25;
}

.card p,
.process-card p{
  margin: 0;
  line-height: 1.55;
}

.card-link{
  margin-top: 12px;
}

.process-number{
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
}

.about-panel p + p{
  margin-top: 10px;
}

.about-side ul{
  margin: 10px 0 0;
  padding-left: 18px;
}

.about-side li + li{
  margin-top: 8px;
}

.cta-band{
  padding: 0 0 52px;
}

.cta-panel .button{
  margin-top: 14px;
}

.site-footer{
  padding: 18px 0;
}

.footer-inner{
  gap: 10px;
}

@media (max-width: 900px){
  .hero{
    padding: 40px 0 28px;
  }

  .hero-container{
    gap: 24px;
  }

  .section{
    padding: 40px 0;
  }

  .services,
  .process-grid,
  .about-grid{
    gap: 14px;
  }

  .card,
  .process-card,
  .about-panel,
  .about-side,
  .cta-panel{
    padding: 18px;
  }
}
.dashboard-label-row{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin-bottom:18px;
}

.dashboard-label-badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:#dbeafe;
  color:#2563eb;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  line-height:1;
  text-transform:uppercase;
}

.dashboard-label-text{
  color:#2563eb;
  font-size:14px;
  font-weight:600;
  line-height:1.4;
}
.contact-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap:32px;
  align-items:start;
}

.contact-panel{
  padding:32px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--surface);
  box-shadow:var(--shadow);
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-top:20px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-field label{
  font-size:0.95rem;
  font-weight:600;
  color:var(--text);
  line-height:1.3;
}

.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  border:1px solid #cbd5e1;
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  color:var(--text);
  background:#fff;
  transition:border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea{
  min-height:180px;
  resize:vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder{
  color:#64748b;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover{
  border-color:#94a3b8;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(37, 99, 235, 0.12);
  background:#fff;
}

.form-field select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23475569' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px;
  padding-right:44px;
}

.form-submit{
  align-self:flex-start;
  min-width:180px;
  margin-top:8px;
}

.contact-sidebar .sidebar-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--surface);
  box-shadow:var(--shadow);
}

@media (max-width: 900px){
  .contact-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .contact-panel{
    padding:24px;
  }

  .form-row{
    grid-template-columns:1fr;
    gap:20px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea{
    padding:13px 14px;
  }

  .form-submit{
    width:100%;
  }
}