:root {
  --brand-primary: #0a2f44;
  --brand-primary-700: #075875;
  --brand-accent: #00b9c6;
  --brand-accent-2: #2cc5b3;
  --brand-success: #8ed400;
  --brand-warning: #ffc83d;
  --brand-danger: #f15a5a;
  --bg-main: #f5f7fa;
  --bg-card: #ffffff;
  --bg-soft-cyan: #e8fbfc;
  --bg-soft-green: #f0f9d9;
  --bg-soft-yellow: #fff7db;
  --text-main: #0a2f44;
  --text-secondary: #4b6475;
  --text-muted: #8b99a7;
  --text-white: #ffffff;
  --border-soft: #dde5ea;
  --border-light: #e8eef2;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 999px;
  --shadow-sm: 0 4px 12px rgba(10, 47, 68, 0.08);
  --shadow-md: 0 10px 24px rgba(10, 47, 68, 0.1);
  --shadow-lg: 0 18px 42px rgba(10, 47, 68, 0.14);
  --font-ui: "Cairo", Tahoma, Arial, sans-serif;
  --font-heading: "Tajawal", "Cairo", Tahoma, Arial, sans-serif;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 22px;
  --fs-2xl: 28px;
  --fs-3xl: 36px;
  --fs-4xl: 48px;
  --fs-hero: clamp(40px, 6vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  background: var(--bg-main);
  color: var(--text-main);
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--brand-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle,
.menu-button {
  display: none;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-md);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-accent), #079bab);
  color: white;
  box-shadow: 0 12px 24px rgba(0, 185, 198, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 185, 198, 0.28);
}

.btn-secondary {
  background: white;
  color: var(--brand-primary);
  border: 1px solid var(--border-soft);
}

.btn-secondary:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.btn-light {
  color: var(--brand-primary);
  background: white;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
}

.btn-lg {
  min-height: 54px;
  padding-inline: 28px;
}

.hero {
  position: relative;
  padding: 84px 0 64px;
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 185, 198, 0.14), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(142, 212, 0, 0.13), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 56px;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-soft-green);
  color: var(--brand-primary);
  font-weight: 900;
  border: 1px solid rgba(142, 212, 0, 0.35);
}

.free-badge.compact {
  padding: 8px 14px;
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-success);
  box-shadow: 0 0 0 6px rgba(142, 212, 0, 0.16);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  line-height: 1.12;
  margin: 18px 0;
  color: var(--brand-primary);
  letter-spacing: 0;
}

.hero-title .accent {
  color: var(--brand-success);
}

.hero-description {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.trust-points {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--text-secondary);
  font-weight: 800;
  font-size: 14px;
}

.hero-visual {
  min-height: 520px;
  position: relative;
}

.real-preview {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.desktop-mockup {
  width: min(620px, 100%);
  margin-inline-start: auto;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.real-desktop {
  margin-block: 0;
}

.real-desktop img {
  width: 100%;
  height: auto;
}

.mockup-bar {
  height: 42px;
  border-bottom: 1px solid var(--border-light);
  background: #f9fbfc;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 18px;
}

.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-soft);
}

.mockup-bar span:nth-child(2) {
  background: var(--brand-warning);
}

.mockup-bar span:nth-child(3) {
  background: var(--brand-accent);
}

.mockup-panel {
  padding: 26px;
}

.panel-head,
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-head strong {
  font-family: var(--font-heading);
  font-size: 24px;
}

.panel-head small {
  color: var(--brand-accent);
  font-weight: 900;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.mini-stats div,
.kanban-preview article {
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.mini-stats strong {
  display: block;
  color: var(--brand-accent);
  font-size: 28px;
  font-family: var(--font-heading);
}

.mini-stats span,
.kanban-preview span,
.kanban-preview small {
  color: var(--text-secondary);
  font-weight: 800;
}

.kanban-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.kanban-preview strong {
  display: block;
  margin: 12px 0;
  font-size: 17px;
}

.phone-mockup {
  position: absolute;
  width: 178px;
  min-height: 316px;
  border-radius: 34px;
  background: white;
  border: 8px solid #0d2f43;
  box-shadow: var(--shadow-lg);
  padding: 28px 16px 16px;
  text-align: center;
}

.real-phone {
  width: 190px;
  min-height: 0;
  margin: 0;
  left: 0;
  right: auto;
  bottom: 4px;
  padding: 0;
  overflow: hidden;
  background: #f4f8fb;
}

.real-phone .phone-speaker {
  display: none;
}

.real-phone img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.phone-one {
  right: 2%;
  bottom: 10px;
}

.phone-two {
  left: 4%;
  bottom: 44px;
}

.phone-speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #0d2f43;
}

.phone-mockup strong {
  font-family: var(--font-heading);
  color: var(--brand-primary);
}

.progress-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 18px auto;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--brand-accent) 75%, #edf3f6 0);
  color: var(--brand-primary);
  font-weight: 900;
  position: relative;
}

.progress-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: white;
  border-radius: 50%;
}

.progress-ring {
  isolation: isolate;
}

.progress-ring::after {
  content: "75%";
  position: relative;
  z-index: 1;
  color: var(--brand-primary);
}

.progress-ring {
  color: transparent;
}

.phone-mockup p {
  margin: 10px 0;
  padding: 10px;
  border-radius: 14px;
  background: #f5f9fb;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}

.calendar-grid span {
  aspect-ratio: 1;
  border-radius: 10px;
  background: #f2f6f8;
}

.calendar-grid .active-day {
  background: var(--brand-accent);
}

.floating-card {
  position: absolute;
  top: 36px;
  left: 28px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--brand-primary);
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow-md);
}

.real-preview .floating-card {
  top: 26px;
  left: 18px;
  background: white;
  color: var(--brand-primary);
  border: 1px solid var(--border-light);
}

.free-strip {
  padding: 18px 0;
  background: white;
  border-block: 1px solid var(--border-light);
}

.free-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.free-strip strong {
  color: var(--brand-success);
  font-size: 22px;
  font-family: var(--font-heading);
}

.free-strip span {
  color: var(--text-secondary);
  font-weight: 700;
}

.free-strip a {
  color: var(--brand-accent);
  font-weight: 900;
  text-decoration: none;
}

.features,
.sectors,
.stats,
.testimonials {
  padding: 72px 0;
}

.sectors {
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-kicker {
  color: var(--brand-accent);
  font-weight: 900;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--brand-primary);
  margin: 0;
}

.section-description {
  color: var(--text-secondary);
  max-width: 680px;
  margin: 14px auto 0;
  line-height: 1.8;
  font-weight: 600;
}

.features-grid,
.sector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.feature-card,
.sector-card,
.testimonial-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.sector-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.icon-box,
.sector-illustration {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: var(--bg-soft-cyan);
  color: var(--brand-accent);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}

.icon-box.success {
  background: var(--bg-soft-green);
  color: #6fa800;
}

.icon-box.warning {
  background: var(--bg-soft-yellow);
  color: #c58d00;
}

.icon-box.danger {
  background: #fff0f0;
  color: var(--brand-danger);
  font-size: 14px;
}

.feature-card h3,
.sector-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--brand-primary);
}

.sector-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
}

.feature-card p,
.sector-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.sector-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  padding-top: 18px;
}

.sector-illustration {
  width: min(146px, 100%);
  height: 116px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(10, 47, 68, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 14px 30px rgba(10, 47, 68, 0.1);
  overflow: hidden;
}

.sector-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.launch-card {
  margin-bottom: 24px;
  border-radius: var(--radius-2xl);
  padding: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #effdff 100%);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.launch-card h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin: 14px 0 8px;
}

.launch-card p {
  color: var(--text-secondary);
  margin: 0;
  font-weight: 700;
}

.stats-band {
  padding: 28px;
  border-radius: var(--radius-2xl);
  background: white;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-item {
  text-align: center;
  padding: 18px;
  border-inline-start: 1px solid var(--border-light);
}

.stat-item:first-child {
  border-inline-start: 0;
}

.stat-value {
  color: var(--brand-accent);
  font-size: 32px;
  font-weight: 900;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-main);
  margin-top: 6px;
  font-weight: 900;
}

.stat-item small {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  text-align: start;
  padding: 24px;
}

.stars {
  color: var(--brand-warning);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.9;
  margin: 0 0 18px;
  font-weight: 700;
}

.testimonial-author {
  justify-content: flex-start;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author small {
  color: var(--text-muted);
  font-weight: 800;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-soft-cyan);
  color: var(--brand-accent);
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.final-cta {
  padding: 56px 0 72px;
}

.cta-box {
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 185, 198, 0.32), transparent 28%),
    linear-gradient(135deg, #0a2f44 0%, #075875 100%);
  color: white;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.cta-box img {
  width: 126px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  margin: 0 0 10px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 10px;
  line-height: 1.8;
}

.cta-box small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer {
  background: var(--brand-primary);
  color: white;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 32px;
}

.footer-logo {
  width: 112px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer h4 {
  margin: 0 0 14px;
  color: white;
}

.footer a,
.footer p,
.footer .store-badge {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  line-height: 1.9;
  font-size: 14px;
  display: block;
}

.footer a:hover {
  color: white;
}

.store-badge {
  width: max-content;
  min-width: 132px;
  margin-bottom: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  text-align: center;
}

.login-sheet[hidden] {
  display: none;
}

.login-sheet {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  padding: 96px 16px 24px;
}

.login-sheet-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 47, 68, 0.22);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.login-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(221, 229, 234, 0.88);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  text-align: right;
}

.login-card img {
  width: 112px;
  margin-inline: auto;
}

.login-card > span {
  color: var(--brand-accent);
  font-weight: 900;
  text-align: center;
}

.login-card h2 {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-heading);
  font-size: 32px;
  text-align: center;
}

.login-card p {
  margin: 0 0 6px;
  color: var(--text-secondary);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.login-card label {
  display: grid;
  gap: 8px;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 900;
}

.login-card input[type="email"],
.login-card input[type="password"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text-main);
  font: 800 15px var(--font-ui);
  outline: none;
  padding: 0 14px;
}

.login-card input:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 4px rgba(0, 185, 198, 0.12);
}

.login-remember {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  justify-content: flex-start;
  gap: 10px !important;
  color: var(--text-secondary) !important;
}

.login-remember input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-accent);
}

.login-message {
  min-height: 22px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.login-message[data-tone="error"] {
  color: var(--brand-danger);
}

.login-message[data-tone="success"] {
  color: #5f9200;
}

.login-submit {
  width: 100%;
}

.login-submit:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

.login-register {
  color: var(--brand-accent);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.login-register:hover {
  text-decoration: underline;
}

.login-close {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  background: #ffffff;
  color: var(--text-main);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.login-sheet-open {
  overflow: hidden;
}

.legal-page {
  min-height: 100vh;
  padding: 48px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 185, 198, 0.12), transparent 26%),
    var(--bg-main);
}

.legal-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 5vw, 48px);
}

.legal-card h1,
.legal-card h2 {
  font-family: var(--font-heading);
  color: var(--brand-primary);
}

.legal-card h1 {
  margin-top: 0;
  font-size: clamp(32px, 5vw, 48px);
}

.legal-card p,
.legal-card li {
  color: var(--text-secondary);
  line-height: 2;
  font-weight: 600;
}

.legal-card a {
  color: var(--brand-accent);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .features-grid,
  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .navbar {
    gap: 12px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: white;
    display: grid;
    place-content: center;
    gap: 5px;
    order: 3;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 4px;
    background: var(--brand-primary);
  }

  .nav-links {
    position: absolute;
    inset-inline: 16px;
    top: 82px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    background: white;
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .nav-actions .btn-primary {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-points {
    justify-content: center;
  }

  .hero-visual {
    min-height: 500px;
  }

  .desktop-mockup {
    margin-inline: auto;
  }

  .real-preview {
    justify-content: center;
  }

  .real-phone {
    left: 4%;
    width: 174px;
  }

  .stats-band,
  .testimonial-grid,
  .footer-grid,
  .launch-card {
    grid-template-columns: 1fr;
  }

  .launch-card {
    display: grid;
    text-align: center;
  }

  .stat-item,
  .stat-item:first-child {
    border-inline-start: 0;
    border-top: 1px solid var(--border-light);
  }

  .stat-item:first-child {
    border-top: 0;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-box img {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .features-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .sector-illustration {
    width: min(210px, 76vw);
    height: 152px;
    border-radius: 30px;
    margin-bottom: 18px;
  }

  .hero {
    padding: 56px 0 42px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .mini-stats,
  .kanban-preview {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: 156px;
    min-height: 284px;
    border-width: 7px;
  }

  .real-phone {
    width: 150px;
    min-height: 0;
    left: 0;
    bottom: 8px;
    border-width: 7px;
  }

  .real-phone img {
    border-radius: 22px;
  }

  .phone-one {
    right: 0;
  }

  .phone-two {
    left: 0;
    bottom: 18px;
  }

  .floating-card {
    top: auto;
    bottom: 318px;
    left: 50%;
    transform: translateX(-50%);
  }

  .real-preview .floating-card {
    bottom: 252px;
    width: max-content;
  }

  .free-strip-inner,
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .nav-actions {
    flex: 1;
    justify-content: flex-end;
  }

  .logo img {
    height: 40px;
  }

  .cta-box,
  .stats-band,
  .launch-card {
    padding: 24px;
  }

  .login-sheet {
    place-items: start center;
    padding-top: 84px;
  }

  .login-card {
    padding: 24px;
  }
}
