/* Root variables for the premium white/green theme */
:root {
  --primary-white: #ffffff;
  --secondary-white: #f8fcf8;
  --accent-green: #28a745;
  --accent-green-light: #eaffea;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --border-color: #e2ede2;
  --shadow-sm: 0 2px 10px rgba(40, 167, 69, 0.05);
  --shadow-md: 0 10px 30px rgba(40, 167, 69, 0.1);
  --transition: all 0.3s ease;
}

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

php {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--primary-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.sh {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}

/* ===== NAVBAR ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 80px;
  display: flex;
  align-items: center;
  transition: height 0.3s;
}

.nav-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 55px;
  display: block;
  transition: height 0.3s;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

nav ul li a {
  display: block;
  padding: 10px 15px;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

nav ul li a:hover {
  color: var(--accent-green);
}

.nav-trial {
  background: var(--accent-green) !important;
  color: #fff !important;
  border-radius: 4px;
  padding: 12px 24px !important;
  font-size: 0.82rem !important;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.nav-trial:hover {
  background: #218838 !important;
  transform: translateY(-2px);
}

/* ===== HERO ===== */
#home {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('image/hero.png.png');
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 30px;
  text-align: center;
}

.hero-left {
  max-width: 800px;
  margin: 0 auto;
}

.hero-left h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #ffffff;
}

.hero-left h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 45px;
}

.btn-green {
  display: inline-block;
  background: var(--accent-green);
  color: #fff;
  padding: 18px 48px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
  transition: background 0.2s, transform 0.15s;
}

.btn-green:hover {
  background: #218838;
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
  padding: 70px 20px;
}

.bg-light {
  background-color: var(--secondary-white);
}

.sh {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.rl {
  width: 60px;
  height: 4px;
  background: var(--accent-green);
  margin: 0 auto 50px;
  border-radius: 2px;
}

/* ===== FEATURES ===== */
.feat3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.fcard {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 50px 35px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.fcard:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-green);
}

.ficon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: var(--accent-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 25px;
  color: var(--accent-green);
}

.fcard h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.fcard p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== PRICING ===== */
#pricing {
  background-color: #000000;
  color: #ffffff;
}

#pricing .sh {
  color: #ffffff;
}

#pricing .rl {
  background: #ff8c00;
}

.pgroup-label {
  text-align: center;
  margin-bottom: 40px;
}

.pgroup-label span {
  background: #ff8c00;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 10px 35px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.pcard {
  background: #000000;
  border: 3px solid #ff8c00;
  border-radius: 25px;
  padding: 45px 35px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.1);
}

.pcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.pcard.hot {
  border: 3px dashed #ff8c00;
  transform: scale(1.05);
  z-index: 10;
}

.pop-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff8c00;
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pperiod {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.pamount {
  margin-bottom: 30px;
}

.pnum {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.pcur {
  font-size: 1.8rem;
  vertical-align: super;
  margin-right: 5px;
  color: #ffffff;
}

.plist {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.plist li {
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.plist li i.text-green {
  color: #ff8c00;
}

/* ===== CHANNELS & SETUP (Accordions) ===== */
.reg,
.dev {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.rhdr,
.dhdr {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary-white);
  transition: var(--transition);
}

.rhdr:hover,
.dhdr:hover {
  background: var(--accent-green-light);
}

.rtitle,
.dhdr h4 {
  font-weight: 700;
  font-size: 1rem;
}

.rarr,
.darr {
  color: var(--accent-green);
  transition: transform 0.3s;
}

.open .rarr,
.open .darr {
  transform: rotate(180deg);
}

.rbody,
.dbody {
  display: none;
  padding: 25px;
  background: #fff;
}

.rbody.open,
.dbody.open {
  display: block;
}

/* ===== Contact Section ===== */

/* SECTION */
.contact-section {
  padding: 80px 20px;
  background: #f8f9fa;
  text-align: center;
}

/* TITLE */
.contact-title {
  font-size: 40px;
  margin-bottom: 40px;
  position: relative;
}

.contact-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #28a745;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* CENTER BOX */
.contact-wrapper {
  display: flex;
  justify-content: center;
}

/* FORM CARD */
.contact-form {
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ROW (NAME + EMAIL SIDE BY SIDE) */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-row input {
  flex: 1;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

/* TEXTAREA */
.contact-form textarea {
  height: 140px;
  margin-bottom: 20px;
  resize: none;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #218838;
  transform: translateY(-2px);
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 30px 40px;
}

.ftop {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.flogo img {
  height: 60px;
  margin-bottom: 20px;
}

.fcol h5 {
  color: var(--accent-green);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.fcol ul {
  list-style: none;
}

.fcol ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 2.2;
  transition: color 0.2s;
}

.fcol ul li a:hover {
  color: var(--accent-green);
}

/* ===== MOBILE ===== */
@media (max-width: 920px) {

  .feat3,
  .pgrid,
  .ftop {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }
}