@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --bg: #050810;
  --bg2: #080d1a;
  --bg3: #0d1526;
  --surface: #111827;
  --surface2: #1a2235;
  --border: rgba(99,179,237,0.12);
  --accent: #00d4ff;
  --accent2: #3b82f6;
  --accent3: #7c3aed;
  --text: #e8f0fe;
  --text2: #8899b4;
  --text3: #556070;
  --green: #00e5a0;
  --radius: 16px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .4;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 3px; }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ─── GRID BADGE ─── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.2);
  color: var(--accent); font-size: .75rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

/* ─── SECTION TITLE ─── */
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-title span { color: var(--accent); }
.section-subtitle { color: var(--text2); max-width: 560px; margin-bottom: 60px; font-size: 1.05rem; }

/* ─── HEADER / NAV ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
header.scrolled {
  background: rgba(5,8,16,.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

.logo {
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 800;
  color: #fff; letter-spacing: -.02em;
}
.logo span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: var(--text2); font-size: .9rem; font-weight: 400; transition: color .2s; }
.nav-links a:hover { color: #fff; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 8px; font-family: var(--font-body);
  font-size: .9rem; font-weight: 500; cursor: pointer; transition: all .2s;
  border: none;
}
.btn-primary {
  background: var(--accent); color: #000;
}
.btn-primary:hover { background: #fff; color: #000; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,212,255,.3); }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(5,8,16,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); padding: 24px;
  flex-direction: column; gap: 20px; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); font-size: 1.1rem; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,212,255,.07) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 10% 80%, rgba(124,58,237,.06) 0%, transparent 70%);
}

/* animated grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,179,237,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,179,237,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content { position: relative; z-index: 1; padding: 80px 0; }

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1.05; margin-bottom: 24px;
}
.hero-title .line2 { color: var(--accent); display: block; }
.hero-title .line3 {
  display: block;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-desc { color: var(--text2); max-width: 520px; font-size: 1.1rem; margin-bottom: 40px; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 72px; padding-top: 40px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.stat-item { }
.stat-num {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.stat-num span { color: var(--accent); }
.stat-label { color: var(--text3); font-size: .85rem; margin-top: 4px; }

/* floating phone mockup */
.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  z-index: 1;
}
.phone-wrap {
  width: 260px; position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.phone-body {
  width: 260px; height: 520px;
  background: linear-gradient(145deg, #1a2235, #0d1526);
  border-radius: 40px;
  border: 1.5px solid rgba(0,212,255,.25);
  box-shadow: 0 0 80px rgba(0,212,255,.1), 0 40px 80px rgba(0,0,0,.5),
              inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden; position: relative;
}

.phone-screen {
  position: absolute; inset: 12px; border-radius: 30px;
  background: linear-gradient(160deg, #0d1526, #050810);
  overflow: hidden;
}

.phone-notch {
  width: 80px; height: 28px; background: #050810;
  border-radius: 0 0 20px 20px;
  margin: 0 auto; position: relative; z-index: 2;
}

.phone-app-grid {
  padding: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 8px;
}
.phone-app-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.phone-app-icon:nth-child(1){background:linear-gradient(135deg,#3b82f6,#1d4ed8)}
.phone-app-icon:nth-child(2){background:linear-gradient(135deg,#10b981,#065f46)}
.phone-app-icon:nth-child(3){background:linear-gradient(135deg,#f59e0b,#b45309)}
.phone-app-icon:nth-child(4){background:linear-gradient(135deg,#ef4444,#991b1b)}
.phone-app-icon:nth-child(5){background:linear-gradient(135deg,#8b5cf6,#5b21b6)}
.phone-app-icon:nth-child(6){background:linear-gradient(135deg,#06b6d4,#0e7490)}
.phone-app-icon:nth-child(7){background:linear-gradient(135deg,#ec4899,#9d174d)}
.phone-app-icon:nth-child(8){background:linear-gradient(135deg,#f97316,#c2410c)}

.phone-card {
  margin: 12px; padding: 14px;
  background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.15);
  border-radius: 16px;
}
.phone-card-label { font-size: 9px; color: var(--text2); margin-bottom: 4px; font-family: var(--font-head); }
.phone-card-val { font-size: 18px; font-weight: 700; color: var(--accent); font-family: var(--font-head); }
.phone-bar { height: 4px; background: var(--border); border-radius: 2px; margin-top: 10px; }
.phone-bar-fill { height: 100%; width: 72%; background: var(--accent); border-radius: 2px; }

/* glow rings */
.glow-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: ringPulse 4s ease-in-out infinite;
}
.glow-ring-1 { width: 320px; height: 320px; top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-color: rgba(0,212,255,.1); animation-delay: 0s; }
.glow-ring-2 { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-color: rgba(0,212,255,.06); animation-delay: .8s; }
.glow-ring-3 { width: 520px; height: 520px; top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-color: rgba(0,212,255,.03); animation-delay: 1.6s; }
@keyframes ringPulse { 0%,100%{opacity:1;transform:translate(-50%,-50%) scale(1)} 50%{opacity:.4;transform:translate(-50%,-50%) scale(1.05)} }

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border-radius: 20px; overflow: hidden;
}
.service-card {
  background: var(--bg2); padding: 40px 32px;
  transition: background .3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.15);
}
.service-title { font-size: 1.1rem; margin-bottom: 10px; color: #fff; }
.service-desc { color: var(--text2); font-size: .9rem; line-height: 1.65; }

/* ─── PROCESS ─── */
.process-bg { background: var(--bg2); }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 36px 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  color: var(--border); line-height: 1; padding-top: 4px;
  transition: color .3s;
}
.process-step:hover .step-num { color: var(--accent); }
.step-content {}
.step-title { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.step-desc { color: var(--text2); font-size: .95rem; }

/* ─── PORTFOLIO ─── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.4); }

.portfolio-card:nth-child(1) { grid-row: span 2; }

.portfolio-img {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
}
.portfolio-card:nth-child(1) .portfolio-img { height: 320px; }

.portfolio-img-1 { background: linear-gradient(135deg, #1e3a5f, #0d1526); }
.portfolio-img-2 { background: linear-gradient(135deg, #1a1f2e, #2d1b4e); }
.portfolio-img-3 { background: linear-gradient(135deg, #0f2417, #1a3a2a); }
.portfolio-img-4 { background: linear-gradient(135deg, #2d1515, #1a0d0d); }

.portfolio-info { padding: 24px; }
.portfolio-tag {
  font-size: .72rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.portfolio-name { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.portfolio-desc { color: var(--text2); font-size: .88rem; }

.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.ptag {
  font-size: .72rem; padding: 3px 10px; border-radius: 100px;
  background: rgba(255,255,255,.06); color: var(--text3);
}

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pricing-card {
  border-radius: 20px; padding: 36px 32px;
  border: 1px solid var(--border); background: var(--bg2);
  position: relative; transition: transform .3s;
}
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(0,212,255,.06), rgba(59,130,246,.06));
  border-color: rgba(0,212,255,.3);
  transform: translateY(-8px);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured:hover { transform: translateY(-12px); }

.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
}
.pricing-name { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text3); margin-bottom: 12px; }
.pricing-price { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: #fff; }
.pricing-price span { font-size: 1rem; color: var(--text3); font-weight: 300; }
.pricing-desc { color: var(--text2); font-size: .88rem; margin: 12px 0 24px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; gap: 12px; font-size: .9rem; color: var(--text2); align-items: flex-start; }
.pricing-features li .check { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.pricing-features li .cross { color: var(--text3); font-size: 1rem; flex-shrink: 0; }

/* ─── TESTIMONIALS ─── */
.testimonials-bg { background: var(--bg2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform .3s;
}
.testimonial-card:hover { transform: translateY(-4px); }

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--text2); font-size: .95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; font-family: var(--font-head);
  flex-shrink: 0;
}
.av1{background:linear-gradient(135deg,#3b82f6,#7c3aed)}
.av2{background:linear-gradient(135deg,#10b981,#3b82f6)}
.av3{background:linear-gradient(135deg,#f59e0b,#ef4444)}
.av4{background:linear-gradient(135deg,#ec4899,#8b5cf6)}
.av5{background:linear-gradient(135deg,#06b6d4,#3b82f6)}
.av6{background:linear-gradient(135deg,#10b981,#06b6d4)}

.author-name { font-weight: 500; font-size: .9rem; color: #fff; }
.author-company { font-size: .8rem; color: var(--text3); }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--bg2); overflow: hidden;
}
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 500; color: #fff; gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { color: var(--accent); font-size: 1.4rem; flex-shrink: 0;
  transition: transform .3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; color: var(--text2); font-size: .95rem; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, rgba(0,212,255,.08), rgba(124,58,237,.08));
  border: 1px solid rgba(0,212,255,.15); border-radius: 24px;
  padding: 72px; text-align: center; position: relative; overflow: hidden;
  margin: 0 24px;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0,212,255,.08), transparent);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-desc { color: var(--text2); max-width: 480px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-logo span { color: var(--accent); }
.footer-tagline { color: var(--text3); font-size: .88rem; max-width: 260px; line-height: 1.6; }
.footer-address { color: var(--text3); font-size: .82rem; margin-top: 16px; line-height: 1.7; }
.footer-h { font-family: var(--font-head); font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; color: var(--text3); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text2); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: var(--text3); font-size: .82rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text3); font-size: .82rem; }
.footer-legal a:hover { color: var(--accent); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 520px; z-index: 999;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  display: none; animation: slideUp .4s ease;
}
.cookie-banner.show { display: block; }
@keyframes slideUp { from{transform:translateY(20px);opacity:0} to{transform:none;opacity:1} }

.cookie-title { font-weight: 600; margin-bottom: 8px; font-family: var(--font-head); }
.cookie-text { color: var(--text2); font-size: .88rem; margin-bottom: 20px; }
.cookie-text a { color: var(--accent); }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btns .btn { padding: 9px 20px; font-size: .85rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,255,.07), transparent);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.page-hero p { color: var(--text2); max-width: 540px; margin: 0 auto; }

/* ─── GENERIC CONTENT PAGE ─── */
.content-page { max-width: 800px; margin: 0 auto; padding: 60px 24px 100px; }
.content-page h2 { font-size: 1.4rem; color: #fff; margin: 40px 0 12px; }
.content-page p { color: var(--text2); margin-bottom: 16px; }
.content-page ul { color: var(--text2); padding-left: 24px; margin-bottom: 16px; }
.content-page ul li { margin-bottom: 6px; }
.content-page a { color: var(--accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card:nth-child(1) { grid-row: span 1; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.8rem; }
  .cta-band { padding: 48px 24px; margin: 0 0; border-radius: 0; border-left: none; border-right: none; }
}
