/* ── HERO SECTION ── */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--hero-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at 60% 40%, rgba(7, 58, 143, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px clamp(20px, 4vw, 48px) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 560px;
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-title strong {
  font-weight: 700;
  display: block;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: -0.2px;
}

.hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
}

/* ── HERO MOCKUPS — Laptop & Phone ── */

.hero-mockups {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  perspective: 1200px;
}

/* ── MacBook Pro ── */

.mockup-laptop {
  position: relative;
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}

.mockup-laptop-frame {
  background: #1a1a1a;
  border-radius: 12px 12px 0 0;
  padding: 6px 6px 0;
}

.mockup-laptop-screen {
  background: #fff;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.mockup-laptop-screen-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mockup-laptop-header {
  background: #0f2240;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-laptop-header-logo {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 800;
  color: #fff;
}

.mockup-laptop-header-nav {
  display: flex;
  gap: 14px;
}

.mockup-laptop-header-nav span {
  font-size: 6.5px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.mockup-laptop-body {
  padding: 14px 16px;
  flex: 1;
}

.mockup-laptop-body h3 {
  font-size: 11px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.mockup-laptop-body > p {
  font-size: 6px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.mockup-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e2e5ea;
  margin-bottom: 10px;
}

.mockup-tab {
  font-size: 5.5px;
  padding: 4px 8px;
  color: var(--muted);
  font-weight: 500;
  cursor: default;
}

.mockup-tab.active {
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
}

.mockup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 5.5px;
  line-height: 1.8;
  color: var(--muted);
}

.mockup-table td {
  padding: 0 6px 0 0;
  white-space: nowrap;
}

.mockup-table td:first-child {
  font-weight: 600;
  color: var(--fg);
}

.mockup-laptop-base {
  width: 110%;
  height: 10px;
  background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 100%);
  border-radius: 0 0 4px 4px;
  margin-left: -5%;
  position: relative;
}

.mockup-laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #b0b0b0;
  border-radius: 0 0 3px 3px;
}

/* ── iPhone ── */

.mockup-phone {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 3;
  animation: float 7s ease-in-out infinite;
  animation-delay: -1.5s;
}

.mockup-phone-frame {
  width: 150px;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.mockup-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 14px;
  background: #1a1a1a;
  border-radius: 10px;
  z-index: 10;
}

.mockup-phone-screen {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
}

.mockup-phone-header {
  background: #0f2240;
  padding: 20px 8px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-phone-header-logo {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4px;
  font-weight: 800;
  color: #fff;
}

.mockup-phone-header span {
  font-size: 6px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.mockup-phone-body {
  padding: 10px 10px 14px;
}

.mockup-phone-body h4 {
  font-size: 9px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.mockup-phone-body > p {
  font-size: 4.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.mockup-phone-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 4.5px;
  line-height: 2;
  color: var(--muted);
}

.mockup-phone-table td {
  padding: 0 4px 0 0;
  white-space: nowrap;
}

.mockup-phone-table td:first-child {
  font-weight: 600;
  color: var(--fg);
}

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