/* =========================================================
   360° WEB SOLUTIONS — HERO (SUNSET PALETTE) — COMPACT
   Palette: warm coral, amber, deep navy
   ========================================================= */

/* ---------- CUSTOM PROPERTIES (easy to change) ---------- */
:root {
    --primary: #FF6B4A;
    --secondary: #FF9A56;
    --gradient-start: #FF6B4A;
    --gradient-end: #FFB347;
    --glow-1: #FF6B4A;
    --glow-2: #FF4785;
    --text-light: #f0e6d3;
    --border-light: rgba(255, 107, 74, 0.25);
    --badge-bg: rgba(255, 107, 74, 0.12);
    --card-bg: #1A1F2E;

    /* ---- compact sizing ---- */
    --hero-padding: 60px 0 50px;
    --grid-gap: 30px;
    --heading-size: clamp(1.8rem, 4vw, 3rem);
    --text-size: clamp(0.85rem, 1vw, 1rem);
    --btn-padding: 10px 24px;
    --btn-radius: 8px;
    --img-max-width: 480px;
    --blob-size-1: 200px;
    --blob-size-2: 250px;
    --blur-amount: 80px;
}

/* ---------- RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- HERO ---------- */
.web360-hero {
    position: relative;
    min-height: auto;             /* was 100vh — now compact */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e1a, #141b2b, #0a0e1a);
    background-size: 400% 400%;
    animation: bgMove 15s ease infinite;
    padding: var(--hero-padding);
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ---------- CONTAINER ---------- */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ---------- GRID ---------- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

/* ==========================================
   LEFT — CONTENT
   ========================================== */

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 16px;            /* was 8px 20px */
    background: var(--badge-bg);
    border: 1px solid var(--border-light);
    border-radius: 40px;
    color: var(--primary);
    font-size: clamp(0.65rem, 0.8vw, 0.75rem);
    font-weight: 500;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

/* Heading */
.hero-content h1 {
    font-size: var(--heading-size);
    color: #fff;
    line-height: 1.1;
    margin: 10px 0;              /* was 14px 0 */
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Paragraph */
.hero-content p {
    color: var(--text-light);
    font-size: var(--text-size);
    line-height: 1.6;
    margin-bottom: 24px;         /* was 32px */
    max-width: 500px;
    opacity: 0.9;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: var(--btn-padding);
    text-decoration: none;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: clamp(0.75rem, 0.85vw, 0.9rem);
    transition: .35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    border: none;
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 107, 74, 0.35);
}

.secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ==========================================
   RIGHT — LAPTOP MOCKUP
   ========================================== */

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: var(--img-max-width);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
    animation: float 5s ease-in-out infinite;
    transition: .4s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}

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

/* ==========================================
   FLOATING GLOWS — compact & warm
   ========================================== */

.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.blob1 {
    width: var(--blob-size-1);
    height: var(--blob-size-1);
    background: var(--glow-1);
    top: -80px;
    left: -80px;
    animation: blob1 10s infinite alternate;
    opacity: 0.4;
    filter: blur(var(--blur-amount));
}

.blob2 {
    width: var(--blob-size-2);
    height: var(--blob-size-2);
    background: var(--glow-2);
    bottom: -100px;
    right: -100px;
    animation: blob2 12s infinite alternate;
    opacity: 0.3;
    filter: blur(var(--blur-amount));
}

@keyframes blob1 {
    to { transform: translate(80px, 60px); }
}

@keyframes blob2 {
    to { transform: translate(-80px, -60px); }
}

/* =========================================================
   FULLY RESPONSIVE BREAKPOINTS (scaled down)
   ========================================================= */

/* ---------- LARGE SCREENS (1200px+) ---------- */
@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-image img {
        max-width: 540px;
    }

    .blob1 {
        width: 240px;
        height: 240px;
        filter: blur(100px);
    }

    .blob2 {
        width: 280px;
        height: 280px;
        filter: blur(100px);
    }
}

/* ---------- TABLET / SMALL LAPTOP (992px - 1199px) ---------- */
@media (max-width: 1199px) {
    .hero-grid {
        gap: 25px;
    }

    .hero-image img {
        max-width: 420px;
    }
}

/* ---------- TABLET (768px - 991px) ---------- */
@media (max-width: 991px) {
    .web360-hero {
        padding: 50px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content p {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 4.5vw, 2.8rem);
    }

    .hero-image img {
        max-width: 400px;
        margin: 0 auto;
    }

    .blob1 {
        width: 160px;
        height: 160px;
        top: -50px;
        left: -50px;
        filter: blur(70px);
    }

    .blob2 {
        width: 180px;
        height: 180px;
        bottom: -60px;
        right: -60px;
        filter: blur(70px);
    }

    @keyframes blob1 {
        to { transform: translate(50px, 30px); }
    }

    @keyframes blob2 {
        to { transform: translate(-50px, -30px); }
    }
}

/* ---------- MOBILE LANDSCAPE / SMALL TABLET (600px - 767px) ---------- */
@media (max-width: 767px) {
    .web360-hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn {
        padding: 8px 18px;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .hero-image img {
        max-width: 320px;
    }

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

    .blob1 {
        width: 120px;
        height: 120px;
        top: -30px;
        left: -30px;
        filter: blur(60px);
    }

    .blob2 {
        width: 140px;
        height: 140px;
        bottom: -40px;
        right: -40px;
        filter: blur(60px);
    }

    @keyframes blob1 {
        to { transform: translate(30px, 20px); }
    }

    @keyframes blob2 {
        to { transform: translate(-30px, -20px); }
    }
}

/* ---------- MOBILE PORTRAIT (480px - 599px) ---------- */
@media (max-width: 599px) {
    .web360-hero {
        padding: 30px 0;
    }

    .container {
        width: 94%;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        margin: 8px 0;
    }

    .hero-content p {
        font-size: 0.82rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .badge {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .btn {
        width: 100%;
        max-width: 240px;
        padding: 9px 16px;
        font-size: 0.78rem;
        border-radius: 6px;
    }

    .hero-image img {
        max-width: 260px;
    }

    .blob1 {
        width: 90px;
        height: 90px;
        top: -20px;
        left: -20px;
        filter: blur(40px);
    }

    .blob2 {
        width: 110px;
        height: 110px;
        bottom: -30px;
        right: -30px;
        filter: blur(40px);
    }

    @keyframes blob1 {
        to { transform: translate(20px, 15px); }
    }

    @keyframes blob2 {
        to { transform: translate(-20px, -15px); }
    }
}

/* ---------- VERY SMALL SCREENS (< 400px) ---------- */
@media (max-width: 400px) {
    .web360-hero {
        padding: 24px 0;
    }

    .container {
        width: 96%;
    }

    .hero-content h1 {
        font-size: 1.3rem;
        margin: 6px 0;
    }

    .hero-content p {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .badge {
        font-size: 0.6rem;
        padding: 3px 10px;
    }

    .btn {
        padding: 7px 14px;
        font-size: 0.7rem;
        max-width: 200px;
    }

    .hero-image img {
        max-width: 200px;
    }

    .blob1,
    .blob2 {
        display: none;
    }
}

/* ---------- LARGE SCREEN GLOW ADJUSTMENTS ---------- */
@media (min-width: 1600px) {
    .blob1 {
        width: 280px;
        height: 280px;
        filter: blur(120px);
    }

    .blob2 {
        width: 320px;
        height: 320px;
        filter: blur(120px);
    }

    .hero-image img {
        max-width: 600px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@500;600&display=swap');

.pricing-section {
  /* ---------- New Color Palette (Sunset Coral) ---------- */
  --bg: #0B0F19;
  --surface: rgba(20, 20, 35, 0.75);
  --surface-2: rgba(30, 27, 45, 0.9);
  --line: rgba(255, 255, 255, 0.06);

  --primary: #FF6B4A;      /* Coral */
  --secondary: #FF9A56;    /* Orange */
  --accent: #FFB347;       /* Amber */

  --teal: #FF9A56;         /* mapped to secondary */
  --indigo: #FF6B4A;       /* mapped to primary */

  --primary-glow: rgba(255, 107, 74, 0.25);
  --secondary-glow: rgba(255, 154, 86, 0.18);

  --ink: #ffffff;
  --muted: #94A3B8;

  background:
      radial-gradient(circle at top left, var(--primary-glow) 0%, transparent 40%),
      radial-gradient(circle at bottom right, var(--secondary-glow) 0%, transparent 45%),
      linear-gradient(180deg, #0B0F19 0%, #161B2E 100%);

  color: var(--ink);
  padding: 3rem 1rem; /* significantly reduced */
  font-family: "Inter", sans-serif;
}

/* ---------- Section heading (compact) ---------- */

.pricing-section .section-title {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.pricing-section .section-title span {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--teal);
  margin-bottom: 0.5rem;
  position: relative;
  padding: 0 0.9rem;
}

.pricing-section .section-title span::before,
.pricing-section .section-title span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--teal);
  opacity: 0.4;
}

.pricing-section .section-title span::before { right: 100%; }
.pricing-section .section-title span::after { left: 100%; }

.pricing-section .section-title h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); /* reduced */
  line-height: 1.25;
  margin: 0 0 0.5rem;
  color: #fff;
}

.pricing-section .section-title p {
  color: var(--muted);
  font-size: 0.85rem; /* reduced */
  line-height: 1.6;
  margin: 0;
}

/* ---------- Grid (tighter) ---------- */

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem; /* reduced from 1.25rem */
  align-items: stretch;
}

/* ---------- Card (compact) ---------- */

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.2rem 1rem 1rem; /* reduced padding */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 74, 0.4);
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.6);
}

/* degree marker */
.pricing-card::before {
  content: '000°';
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  opacity: 0.6;
}

.pricing-card:nth-child(2)::before { content: '120°'; }
.pricing-card:nth-child(3)::before { content: '240°'; }

.pricing-card.popular {
  background: var(--surface-2);
  border-color: rgba(255, 107, 74, 0.55);
  transform: scale(1.04);
  box-shadow: 0 25px 50px -20px rgba(255, 107, 74, 0.35);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-card.popular::before { color: var(--indigo); opacity: 0.9; }

/* ---------- Badge (compact) ---------- */

.pricing-card .badge {
  position: relative;
  align-self: center;
  margin: -2.2rem 0 0.8rem;
  width: fit-content;
  padding: 0.2rem 0.6rem;
  background: var(--bg);
  border: 1px solid var(--indigo);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--indigo);
}

.pricing-card .badge::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 107, 74, 0.55);
  animation: orbit 18s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card .badge::before { animation: none; }
}

/* ---------- Text content (reduced) ---------- */

.pricing-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.3rem;
}

.pricing-card .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.pricing-card.popular .price { color: var(--indigo); }

.pricing-card .subtitle {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0 0 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

/* ---------- Feature list (tighter) ---------- */

.pricing-card ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  flex-grow: 1;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #c4cee0;
  line-height: 1.4;
  padding: 0.2rem 0;
}

.pricing-card ul li::first-letter {
  color: var(--teal);
  font-size: 0.9em;
  font-weight: 700;
}

.pricing-card.popular ul li::first-letter { color: var(--indigo); }

/* ---------- CTA (smaller) ---------- */

.pricing-card .price-btn {
  display: block;
  text-align: center;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  color: #0B0F19;
  background: #fff;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.pricing-card .price-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.pricing-card.popular .price-btn {
  background: #fff;
  color: #0B0F19;
}

/* ---------- Responsive (compact adjustments) ---------- */

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-card.popular {
    transform: none;
    order: -1;
  }

  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 480px) {
  .pricing-section { padding: 2.5rem 0.8rem 3rem; }
  .pricing-card {
    padding: 1rem 0.8rem 0.8rem;
  }
  .pricing-card .price {
    font-size: 1.4rem;
  }
}