/* =========================================================
   CVV SHOP — MODERN.CSS
   Full stylesheet — DEEP BLACK / ORANGE
   ========================================================= */

/* =========================================================
   1. RESET
   ========================================================= */
*,*::before,*::after{box-sizing:border-box;}

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-height:100vh;
  background:#000;
  color:#EDE4DA;
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',sans-serif;
  font-size:15px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;}
img,svg{display:block;max-width:100%;}
i{font-style:normal;}

::selection{background:rgba(255,122,24,.30);color:#FFF3E8;}

::-webkit-scrollbar{width:10px;height:10px;}
::-webkit-scrollbar-track{background:#000;}
::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg,#FF7A18,#C93F00);
  border-radius:99px;
  border:2px solid #000;
}
::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(180deg,#FF9E3D,#FF5A00);
}

/* =========================================================
   2. VARIABLES
   ========================================================= */
:root{
  /* Backgrounds */
  --bg-primary:   #000000;
  --bg-secondary: #060504;
  --bg-tertiary:  #0C0A08;
  --bg-elevated:  #12100D;

  /* Borders */
  --border:        rgba(255,122,24,0.14);
  --border-strong: rgba(255,122,24,0.32);
  --border-focus:  rgba(255,122,24,0.55);

  /* Text */
  --text-primary:  #EDE4DA;
  --text-secondary:#A2937F;
  --text-muted:    #6A5D4E;
  --text-inverse:  #1A0A02;

  /* Accent (orange) */
  --accent:       #FF7A18;
  --accent-hover: #FF9E3D;
  --accent-soft:  #FFC078;
  --accent-deep:  #FF5A00;
  --accent-dark:  #C93F00;
  --accent-glow:  rgba(255,122,24,0.10);

  /* States */
  --success:    #FF9E3D;
  --success-bg: rgba(255,158,61,0.10);
  --warning:    #FFC078;
  --warning-bg: rgba(255,192,120,0.10);
  --danger:     #F35A00;
  --danger-bg:  rgba(243,90,0,0.10);
  --info:       #FFB25E;
  --info-bg:    rgba(255,178,94,0.10);

  /* Radius */
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  /* Shadow */
  --shadow-sm:   0 4px 14px rgba(0,0,0,.5);
  --shadow:      0 10px 30px rgba(0,0,0,.7);
  --shadow-lg:   0 24px 60px rgba(0,0,0,.85);
  --shadow-glow: 0 12px 34px rgba(255,90,0,.35);
}

/* =========================================================
   3. AMBIENT GLOW (FULL PAGE)
   ========================================================= */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(60% 50% at 50% 0%,rgba(255,122,24,0.06),transparent 70%),
    radial-gradient(45% 40% at 12% 100%,rgba(255,90,0,0.04),transparent 70%),
    radial-gradient(50% 45% at 88% 15%,rgba(255,150,50,0.03),transparent 70%);
}

.m-page-wrapper{
  position:relative;
  z-index:1;
}

/* =========================================================
   4. LAYOUT / CONTAINER
   ========================================================= */
.container-fluid{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 22px;
}
.m-container{
  width:100%;
  margin:0 auto;
  padding:0 22px;
}

/* =========================================================
   5. NAVBAR — full width, logo left, buttons right
   ========================================================= */
.m-navbar{
  position:sticky;
  top:0;
  z-index:50;
  background:linear-gradient(180deg,rgba(0,0,0,.96),rgba(0,0,0,.72));
  border-bottom:1px solid var(--border);
  -webkit-backdrop-filter:blur(14px);
  backdrop-filter:blur(14px);
}

/* Navbar container — full width, no max-width limit */
.m-navbar .container-fluid{
  max-width:none;
  width:100%;
  margin:0;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* Logo */
.m-logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:16px;
  font-weight:800;
  letter-spacing:.02em;
  color:#FFF3E8;
  flex-shrink:0;
}
.m-logo i{font-size:20px;color:var(--accent);}
.m-logo span{color:#FFF3E8;}

/* Nav links (center) */
.m-nav-links{
  display:none;
  align-items:center;
  gap:6px;
}
.m-nav-links a{
  padding:8px 14px;
  font-size:13px;
  font-weight:600;
  color:var(--text-secondary);
  border-radius:8px;
  transition:color .2s, background .2s;
}
.m-nav-links a:hover{
  color:var(--accent);
  background:rgba(255,122,24,.06);
}

/* Nav right — buttons anchored right */
.m-nav-right{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:auto;
}

/* =========================================================
   6. BUTTONS
   ========================================================= */
.m-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 18px;
  border-radius:10px;
  font-size:13.5px;
  font-weight:700;
  letter-spacing:.02em;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s, box-shadow .22s, filter .2s, background .2s, border-color .2s, color .2s;
  white-space:nowrap;
  line-height:1;
  text-decoration:none;
  user-select:none;
}
.m-btn:active{transform:translateY(0) scale(.995);}

.m-btn-sm{
  padding:8px 14px;
  font-size:12.5px;
  border-radius:9px;
}

/* Accent button — orange gradient */
.m-btn-accent{
  color:#1C0A00;
  background:linear-gradient(135deg,#FFA53D 0%,#FF7A18 45%,#F35A00 100%);
  border:1px solid transparent;
  box-shadow:
    0 10px 26px rgba(255,90,0,.30),
    inset 0 1px 0 rgba(255,255,255,.35);
}
.m-btn-accent:hover{
  filter:brightness(1.07);
  transform:translateY(-1px);
  box-shadow:
    0 14px 34px rgba(255,90,0,.45),
    inset 0 1px 0 rgba(255,255,255,.42);
}
.m-btn-accent i,
.m-btn-accent span{color:#1C0A00;}

/* Ghost button — orange border */
.m-btn-ghost{
  color:var(--accent);
  background:rgba(255,122,24,0.05);
  border:1px solid rgba(255,122,24,0.30);
}
.m-btn-ghost:hover{
  color:#FFD199;
  background:rgba(255,122,24,0.10);
  border-color:rgba(255,122,24,0.55);
  transform:translateY(-1px);
}

/* =========================================================
   7. HAMBURGER + MOBILE MENU
   ========================================================= */
.m-hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;
  height:38px;
  padding:0;
  border:1px solid var(--border);
  border-radius:9px;
  background:rgba(255,122,24,0.05);
  cursor:pointer;
  transition:background .2s, border-color .2s;
}
.m-hamburger:hover{
  background:rgba(255,122,24,0.10);
  border-color:var(--border-strong);
}
.m-hamburger span{
  display:block;
  width:18px;
  height:2px;
  margin:0 auto;
  border-radius:2px;
  background:var(--accent);
  transition:transform .25s, opacity .25s;
}
.m-hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.m-hamburger.active span:nth-child(2){opacity:0;}
.m-hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.m-mobile-menu{
  display:none;
  flex-direction:column;
  background:#000;
  border-bottom:1px solid var(--border);
  padding:8px 22px 14px;
  position:sticky;
  top:66px;
  z-index:49;
}
.m-mobile-menu.open{display:flex;}
.m-mobile-menu a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 4px;
  font-size:14px;
  font-weight:600;
  color:var(--text-secondary);
  border-bottom:1px solid rgba(255,122,24,0.06);
  transition:color .2s, padding-left .2s;
}
.m-mobile-menu a:last-child{border-bottom:0;}
.m-mobile-menu a:hover{
  color:var(--accent);
  padding-left:8px;
}

/* =========================================================
   8. CARD
   ========================================================= */
.m-card{
  background:linear-gradient(160deg,rgba(12,10,8,.88),rgba(2,2,2,.92));
  border:1px solid rgba(255,122,24,0.12);
  border-radius:var(--radius);
  transition:border-color .25s, transform .25s, box-shadow .25s, background .25s;
}
.m-card:hover{
  border-color:rgba(255,122,24,0.42);
  box-shadow:var(--shadow), 0 0 40px rgba(255,122,24,0.06);
}

/* =========================================================
   9. SECTIONS
   ========================================================= */
section{
  color:var(--text-primary);
}

/* Headings */
h1,h2,h3,h4,h5,h6{
  color:var(--text-primary);
  margin:0;
  font-weight:800;
  letter-spacing:-.01em;
}
h1{font-size:clamp(1.8rem,4vw,2.8rem);line-height:1.2;}
h2{font-size:1.6rem;line-height:1.25;}
h3{font-size:1.2rem;}

p{margin:0 0 1rem;color:var(--text-secondary);}
p:last-child{margin-bottom:0;}
strong{color:var(--accent-hover);font-weight:700;}

/* =========================================================
   10. FOOTER — centered
   ========================================================= */
.m-footer{
  position:relative;
  z-index:20;
  background:linear-gradient(0deg,rgba(0,0,0,.96),rgba(0,0,0,.55));
  border-top:1px solid rgba(255,122,24,0.10);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
}
.m-footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px 28px;
  font-size:13px;
  color:var(--text-muted);
  text-align:center;
}
.m-footer-brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13.5px;
  font-weight:800;
  color:#FFF3E8;
}
.m-footer-brand i{color:var(--accent);font-size:16px;}

.m-footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:center;
}
.m-footer-links a{
  color:var(--text-secondary);
  letter-spacing:.02em;
  transition:color .2s, text-shadow .2s;
}
.m-footer-links a:hover{
  color:var(--accent);
  text-shadow:0 0 12px rgba(255,122,24,.5);
}
.m-footer-copy{letter-spacing:.02em;font-size:12.5px;}

/* =========================================================
   11. GRID HELPERS
   ========================================================= */
[style*="display:grid"]{
  /* ensure grid always works */
}

/* =========================================================
   12. UTILITY CLASSES
   ========================================================= */
.text-center{text-align:center;}
.text-muted{color:var(--text-muted);}
.text-accent{color:var(--accent);}
.mb-0{margin-bottom:0;}
.mb-1{margin-bottom:1rem;}
.mb-2{margin-bottom:1.5rem;}
.mb-3{margin-bottom:2rem;}

/* =========================================================
   13. LOADING / SPINNER
   ========================================================= */
.m-spinner{
  display:inline-block;
  width:16px;
  height:16px;
  border:2px solid rgba(255,122,24,.2);
  border-top-color:var(--accent);
  border-radius:50%;
  animation:spin .7s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg);}}

/* =========================================================
   14. BADGE / PILL
   ========================================================= */
.m-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 12px;
  border-radius:999px;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
  background:var(--accent-glow);
  border:1px solid rgba(255,122,24,.25);
}

/* =========================================================
   15. FORM ELEMENTS
   ========================================================= */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea{
  width:100%;
  padding:12px 14px;
  background:rgba(255,122,24,.03);
  border:1px solid rgba(255,122,24,.14);
  border-radius:10px;
  color:var(--text-primary);
  font-family:inherit;
  font-size:14px;
  outline:none;
  transition:border-color .2s, box-shadow .25s, background .2s;
}
input::placeholder,textarea::placeholder{color:#5A4C3E;}

input:hover,select:hover,textarea:hover{border-color:rgba(255,122,24,.24);}

input:focus,select:focus,textarea:focus{
  border-color:var(--accent);
  background:rgba(255,122,24,.06);
  box-shadow:0 0 0 3px rgba(255,122,24,.10),0 0 22px rgba(255,110,20,.14);
}

label{
  display:block;
  margin-bottom:6px;
  font-size:12.5px;
  font-weight:600;
  color:var(--text-secondary);
  letter-spacing:.02em;
}

/* =========================================================
   16. ANIMATIONS
   ========================================================= */
@keyframes pulse{
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:.4;transform:scale(1.15);}
}
@keyframes fadeIn{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:translateY(0);}
}
@keyframes slideDown{
  from{opacity:0;transform:translateY(-8px);}
  to{opacity:1;transform:translateY(0);}
}

.m-fade-in{animation:fadeIn .4s ease-out;}

/* =========================================================
   17. RESPONSIVE
   ========================================================= */
@media (max-width:1024px){
  .m-container{padding-left:20px;padding-right:20px;}
  .m-navbar .container-fluid{padding-left:20px;padding-right:20px;}
}

@media (max-width:860px){
  /* Hide Sign In, show hamburger */
  .m-nav-right .m-btn:not(.m-btn-accent){
    display:none;
  }
  .m-hamburger{display:flex;}
}

@media (max-width:640px){
  body{font-size:14px;}

  .m-container{padding-left:16px;padding-right:16px;}
  .m-navbar .container-fluid{padding-left:16px;padding-right:16px;}

  /* Reduce section padding */
  section[style*="padding:4rem 0 3rem"]{
    padding:3rem 0 2rem !important;
  }
  section[style*="padding:3rem 0"]{
    padding:2.5rem 0 !important;
  }
  section[style*="padding:2rem 0"]{
    padding:1.5rem 0 !important;
  }

  /* Smaller headlines */
  h1[style*="clamp"]{font-size:1.75rem !important;}
  h2[style*="font-size:1.6rem"]{font-size:1.3rem !important;}
  h2[style*="font-size:1.4rem"]{font-size:1.2rem !important;}

  /* Smaller navbar */
  .m-navbar .container-fluid{padding-top:12px;padding-bottom:12px;}
  .m-logo{font-size:15px;}
  .m-logo i{font-size:18px;}
  .m-btn-sm{padding:7px 12px;font-size:12px;}

  /* Footer stack */
  .m-footer-inner{
    padding:18px 16px;
    gap:12px 20px;
    font-size:12.5px;
  }
  .m-footer-links{gap:14px;}
  .m-footer-copy{font-size:12px;}

  /* Mobile menu */
  .m-mobile-menu{padding:8px 16px 14px;top:62px;}
}

@media (max-width:480px){
  .m-btn{padding:9px 14px;font-size:13px;}
  .m-btn-sm{padding:7px 10px;font-size:11.5px;}

  section[style*="padding:3rem 0"]{padding:2rem 0 !important;}

  .m-footer-links{gap:12px;font-size:12px;}
}

/* =========================================================
   18. REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
}

/* =========================================================
   19. PRICING / PRODUCTS
   ========================================================= */
.pricing{
  position:relative;
  padding:80px 0;
  background:#000;
  border-top:1px solid rgba(255,122,24,0.10);
  border-bottom:1px solid rgba(255,122,24,0.10);
  overflow:hidden;
}

/* Ambient glow */
.pricing::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:800px;
  height:800px;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(255,122,24,0.06) 0%,transparent 65%);
  pointer-events:none;
}

/* Head */
.pricing-head{
  position:relative;
  text-align:center;
  margin-bottom:54px;
}
.pricing-tag{
  display:inline-block;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.20em;
  color:#FF7A18;
  margin-bottom:12px;
}
.pricing-title{
  margin:0 0 12px;
  font-size:clamp(26px,3.2vw,38px);
  font-weight:800;
  letter-spacing:-.015em;
  color:#FFF7EE;
}
.pricing-sub{
  margin:0 auto;
  max-width:560px;
  font-size:14px;
  color:#6A5D4E;
  letter-spacing:.02em;
}

/* Grid */
.pricing-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:1100px;
  margin:0 auto;
}

/* Card */
.pricing-card{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:34px 28px 28px;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(10,8,6,.9),rgba(2,2,2,.96));
  border:1px solid rgba(255,122,24,0.14);
  transition:border-color .3s, transform .3s, box-shadow .3s;
}
.pricing-card:hover{
  border-color:rgba(255,122,24,0.42);
  transform:translateY(-4px);
  box-shadow:
    0 20px 50px rgba(0,0,0,.7),
    0 0 50px rgba(255,122,24,.08);
}

/* Featured card (BEST SELLER) */
.pricing-card-featured{
  border-color:rgba(255,122,24,0.42);
  background:linear-gradient(180deg,rgba(20,12,6,.95),rgba(4,3,2,.98));
  box-shadow:
    0 24px 60px rgba(0,0,0,.8),
    0 0 70px rgba(255,122,24,.12);
}
.pricing-card-featured:hover{
  border-color:rgba(255,122,24,0.65);
  box-shadow:
    0 30px 70px rgba(0,0,0,.85),
    0 0 90px rgba(255,122,24,.18);
}

/* Badge BEST SELLER */
.pricing-badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  padding:6px 16px;
  border-radius:999px;
  font-size:10.5px;
  font-weight:800;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:#1C0A00;
  background:linear-gradient(135deg,#FFD199 0%,#FF9E3D 50%,#FF5A00 100%);
  box-shadow:
    0 6px 18px rgba(255,90,0,.45),
    inset 0 1px 0 rgba(255,255,255,.4);
  white-space:nowrap;
}

/* Icon */
.pricing-icon{
  width:52px;
  height:52px;
  margin-bottom:20px;
  border-radius:13px;
  display:grid;
  place-items:center;
  font-size:20px;
  color:#FF7A18;
  background:rgba(255,122,24,0.08);
  border:1px solid rgba(255,122,24,0.24);
  transition:background .3s, color .3s, border-color .3s;
}
.pricing-card:hover .pricing-icon{
  background:linear-gradient(135deg,#FF9E3D,#FF5A00);
  border-color:transparent;
  color:#1C0A00;
}
.pricing-card-featured .pricing-icon{
  background:rgba(255,122,24,0.12);
  border-color:rgba(255,122,24,0.42);
}

/* Name */
.pricing-name{
  margin:0 0 10px;
  font-size:20px;
  font-weight:800;
  letter-spacing:-.01em;
  color:#FFF7EE;
}

/* Desc */
.pricing-desc{
  margin:0 0 26px;
  font-size:13px;
  line-height:1.65;
  color:#A2937F;
  min-height:64px;
}

/* Price */
.pricing-price{
  display:flex;
  align-items:baseline;
  gap:2px;
  margin-bottom:26px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,122,24,0.14);
}
.pricing-currency{
  font-size:22px;
  font-weight:800;
  color:#FF9E3D;
  margin-right:2px;
}
.pricing-amount{
  font-size:46px;
  font-weight:800;
  line-height:1;
  letter-spacing:-.03em;
  background:linear-gradient(180deg,#FFF4E8 0%,#FF9E3D 60%,#FF5A00 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}
.pricing-unit{
  font-size:14px;
  font-weight:600;
  color:#6A5D4E;
  margin-left:6px;
}

/* List */
.pricing-list{
  list-style:none;
  margin:0 0 30px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}
.pricing-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  line-height:1.5;
  color:#EDE4DA;
}
.pricing-list li i{
  flex-shrink:0;
  margin-top:3px;
  font-size:11px;
  color:#FF7A18;
}

/* Button */
.pricing-btn{
  display:block;
  width:100%;
  padding:14px 20px;
  text-align:center;
  border-radius:10px;
  font-size:12.5px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#FF7A18;
  background:rgba(255,122,24,0.05);
  border:1px solid rgba(255,122,24,0.32);
  cursor:pointer;
  transition:all .25s;
}
.pricing-btn:hover{
  color:#1C0A00;
  background:linear-gradient(135deg,#FFA53D 0%,#FF7A18 50%,#F35A00 100%);
  border-color:transparent;
  box-shadow:0 10px 26px rgba(255,90,0,.38);
  transform:translateY(-1px);
}

/* Featured button — always highlighted */
.pricing-btn-featured{
  color:#1C0A00;
  background:linear-gradient(135deg,#FFA53D 0%,#FF7A18 50%,#F35A00 100%);
  border-color:transparent;
  box-shadow:
    0 10px 26px rgba(255,90,0,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
}
.pricing-btn-featured:hover{
  filter:brightness(1.08);
  transform:translateY(-2px);
  box-shadow:
    0 16px 40px rgba(255,90,0,.5),
    inset 0 1px 0 rgba(255,255,255,.42);
}

/* Pricing responsive */
@media (max-width:900px){
  .pricing-grid{
    grid-template-columns:1fr;
    max-width:480px;
    gap:32px;
  }
  .pricing-card-featured{
    order:-1;
    transform:none;
  }
  .pricing-card-featured:hover{
    transform:translateY(-4px);
  }
}

@media (max-width:640px){
  .pricing{padding:56px 0;}
  .pricing-head{margin-bottom:38px;}
  .pricing-title{font-size:24px;}
  .pricing-card{padding:28px 22px 22px;}
  .pricing-icon{width:46px;height:46px;font-size:18px;margin-bottom:16px;}
  .pricing-name{font-size:18px;}
  .pricing-amount{font-size:38px;}
  .pricing-currency{font-size:18px;}
  .pricing-desc{min-height:0;}
  .pricing-list li{font-size:12.5px;}
  .pricing-btn{padding:13px 18px;font-size:12px;}
}

/* =========================================================
   20. READY TO START — Minimal CTA
   ========================================================= */
.ready{
  position:relative;
  padding:60px 0;
  background:#000;
}

.ready-panel{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  padding:70px 40px;
  border-radius:26px;
  background:linear-gradient(180deg,rgba(8,7,6,.95),rgba(2,2,2,.98));
  border:1px solid rgba(255,122,24,0.12);
  text-align:center;
  overflow:hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,170,90,.05);
}

/* Soft glow behind the title */
.ready-panel::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:600px;
  height:300px;
  transform:translate(-50%,-50%);
  background:radial-gradient(ellipse,rgba(255,122,24,0.10) 0%,transparent 65%);
  pointer-events:none;
}

.ready-title{
  position:relative;
  z-index:1;
  margin:0 0 14px;
  font-size:clamp(28px,3.6vw,42px);
  font-weight:800;
  letter-spacing:-.015em;
  color:#FFF7EE;
  line-height:1.15;
}

.ready-sub{
  position:relative;
  z-index:1;
  margin:0 auto 34px;
  max-width:520px;
  font-size:15px;
  line-height:1.65;
  color:#A2937F;
  letter-spacing:.01em;
}

.ready-actions{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

/* Base button */
.ready-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  padding:16px 28px;
  border-radius:12px;
  font-size:12.5px;
  font-weight:800;
  letter-spacing:.20em;
  text-transform:uppercase;
  cursor:pointer;
  border:1px solid transparent;
  transition:all .22s ease;
  white-space:nowrap;
  line-height:1;
}

/* Primary — orange gradient */
.ready-btn-primary{
  color:#1C0A00;
  background:linear-gradient(135deg,#FFC078 0%,#FF9E3D 45%,#FF7A18 100%);
  box-shadow:
    0 12px 30px rgba(255,110,20,.35),
    inset 0 1px 0 rgba(255,255,255,.4);
}
.ready-btn-primary:hover{
  filter:brightness(1.06);
  transform:translateY(-2px);
  box-shadow:
    0 18px 44px rgba(255,110,20,.5),
    inset 0 1px 0 rgba(255,255,255,.45);
}
.ready-btn-primary:active{
  transform:translateY(0) scale(.995);
}

/* Ghost — orange border */
.ready-btn-ghost{
  color:#FF9E3D;
  background:rgba(255,122,24,0.04);
  border:1px solid rgba(255,122,24,0.30);
}
.ready-btn-ghost:hover{
  color:#FFF3E8;
  background:rgba(255,122,24,0.10);
  border-color:rgba(255,122,24,0.60);
  transform:translateY(-2px);
}
.ready-btn-ghost:active{
  transform:translateY(0) scale(.995);
}

/* Ready responsive */
@media (max-width:640px){
  .ready{padding:40px 0;}
  .ready-panel{padding:48px 22px;border-radius:20px;}
  .ready-title{font-size:26px;}
  .ready-sub{font-size:14px;margin-bottom:26px;}
  .ready-actions{gap:10px;}
  .ready-btn{
    width:100%;
    min-width:0;
    padding:14px 22px;
    font-size:11.5px;
  }
}