/* ===== HEADER BACKGROUND (Coinbase-inspired) ===== */
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
.main-header {
  width: 100%;
  background: linear-gradient(135deg, #0b4db8 0%, #2bb7ff 100%);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Container */
.container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 38px;
}

.logo span {
  color: white;
  font-size: 26px;
  font-weight: 700;
}

/* Nav */
.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  text-decoration: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: white;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
  text-decoration: none;
  list-style: none;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  top: 35px;
  left: 0;
  min-width: 170px;
  border-radius: 8px;
  padding: 10px 0;
}

.dropdown-menu li a {
  color: #111;
  padding: 10px 15px;
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
  text-decoration: none;
  list-style: none;
}

/* Buttons Right */
.nav-buttons {
  display: flex;
  gap: 10px;
}

.btn-nav {
    text-decoration: none;
  list-style: none;
  padding: 7px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  color: white;
  font-size: 13px;
}

/* Mobile */
.mobile-menu-icon {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}
.nav-links.open,
.nav-buttons.open {
  display: block;
  position: absolute;
  top: 70px;
  right: 20px;
  background: #ffffff;
  width: 180px;
  padding: 15px;
  border-radius: 10px;
}

.nav-links.open a,
.nav-buttons.open a {
  color: #000;
}
/* HERO SECTION */
.hero-section {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #0b4db8 0%, #2bb7ff 100%);
}

.hero-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14rem;
  flex-wrap: wrap;
}

/* LEFT TEXT */
.hero-left {
  max-width: 550px;
  color: white;
}

.hero-left h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-left h1 span {
  color: #38f897;
}

.hero-left p {
  font-size: 20px;
  margin: 20px 0;
  color: #e9faff;
}

/* BUTTON */
.hero-btn {
  background: #1ec971;
  padding: 14px 28px;
  display: inline-block;
  border-radius: 12px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
}

/* Download Row */
.download-row {
  margin-top: 35px;
}

.download-row p {
  font-size: 16px;
  margin-bottom: 10px;
}

.download-icons img {
  width: 46px;
  margin-right: 10px;
}

/* Certificates */
.cert-row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.cert-box {
  border: 1px solid #ffffff55;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

/* RIGHT IMAGE */
.hero-right img {
  width: 380px;
  transform: rotate(-8deg);
}
/* Coinbase Blue Background (Same throughout website) */
.cares-section {
    width: 100%;
    background: linear-gradient(135deg, #0b4db8 0%, #2bb7ff 100%);
    padding: 80px 0;
    color: white;
}

.cares-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 2rem;
    text-align: center;
}

.cares-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.cares-title {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 50px;
}

.cares-title span {
    color: #3cffb5; /* green neon */
}

/* CARDS */
.cares-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.care-card {
    background: rgba(0, 0, 0, 0.25);
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.07);
    transition: 0.3s ease;
}

.care-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.35);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 28px;
}

.care-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.care-card p {
    font-size: 15px;
    opacity: 0.8;
}

/* Button */
.btn-center {
    margin-top: 45px;
}

.cares-btn {
    display: inline-block;
    background: #3cffb5;
    color: #000;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .cares-cards {
        grid-template-columns: 1fr;
    }

    .cares-title {
        font-size: 32px;
    }
}
/* ===============================
   SECURITY SECTION
==================================*/

.security-section {
    width: 100%;
    background: linear-gradient(135deg, #0b4db8, #2bb7ff);
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.sec-container {
    width: 90%;
    max-width: 1400px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 18px;
    padding: 60px;
    backdrop-filter: blur(6px);
}

.sec-title {
    text-align: center;
    color: white;
    font-size: 34px;
    margin-bottom: 50px;
    font-weight: 700;
}

.security-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.security-card {
    flex: 1;
    min-width: 280px;
    background: transparent;
    text-align: center;
    padding: 20px;
}

.security-card h3 {
    color: white;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
}

.security-card p {
    color: #d2d2d2;
    font-size: 15px;
    line-height: 1.6;
}

.sec-icon {
    width: 60px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
    .security-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .security-card {
        max-width: 600px;
    }
}
/* =============================
   Global Coinbase Background
============================= */
.steps-section {
    background: linear-gradient(135deg, #0b4db8, #2bb7ff);
    padding: 90px 0;
    color: white;
    text-align: center;
}

.steps-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.3;
}

/* Layout */
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.step-box {
    flex: 1;
    min-width: 280px;
}

/* Step Number */
.step-number {
    font-size: 18px;
    font-weight: 600;
    color: #25e895;
    margin-bottom: 10px;
}

/* Step Heading */
.step-heading {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .steps-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
}
/* Section Background (Coinbase Blue Applied Globally Already) */
.steps-section {
    padding: 80px 20px;
}

/* Main Card */
.steps-card {
    max-width: 1100px;
    margin: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

/* Title */
.steps-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Steps Row */
.steps-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Step */
.step-box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

/* Step Number */
.step-number {
    color: #25f3a1;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Step Heading */
.step-head {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Step Text */
.step-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-row {
        flex-direction: column;
        text-align: center;
    }
}
/* Coinbase background (global) */
.pro-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #0b4db8, #2bb7ff);
    text-align: center;
}

/* Main container */
.pro-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Title */
.pro-title {
    color: white;
    font-size: 38px;
    font-weight: 700;
    margin-top: 20px;
}

/* Features row */
.pro-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.feature-item {
    text-align: center;
    color: white;
}

.feature-item p {
    margin-top: 8px;
    font-size: 16px;
}

.feature-icon {
    font-size: 30px;
    font-weight: bold;
}

/* Button */
.pro-btn {
    display: inline-block;
    margin: 25px auto;
    background: #d4a851;
    color: black;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* Dashboard Image */
.pro-image-box {
    margin-top: 50px;
}

.pro-image-box img {
    width: 100%;
    max-width: 1300px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0,0,0,0.3);
}


/* Responsive */
@media (max-width: 900px) {
    .pro-title {
        font-size: 30px;
    }

    .pro-features {
        flex-direction: column;
        gap: 25px;
    }

    .feature-icon {
        font-size: 26px;
    }
}
/* Whole Section */
.faq-section {
    background: linear-gradient(135deg, #0b4db8, #2bb7ff);
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.faq-container {
    width: 85%;
    display: flex;
    gap: 40px;
}

/* LEFT SUPPORT CARD */
.support-card {
    background:#0c2c1f;
    color: white;
    padding: 40px;
    width: 30%;
    border-radius: 14px;
}

.support-card .label {
    font-size: 15px;
    opacity: 0.7;
    margin-top: 20px;
}

.email {
    font-size: 18px;
    margin: 5px 0 15px 0;
}

.ticket-btn {
    color: #58e39d;
    font-size: 18px;
}

/* RIGHT FAQ BOX */
.faq-box {
    width: 70%;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 14px;
    padding: 40px;
    color: white;
}

.faq-title {
    font-size: 35px;
    margin-bottom: 30px;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    padding: 15px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    padding: 10px 0;
    opacity: 0.8;
}

/* When open */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-right img {
    margin-top: 40px;
    transform: rotate(0deg);
    width: 300px;
  }
}



/* Responsive */
@media (max-width: 900px) {
  .nav-links,
  .nav-buttons {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  background: #0b4db8; /* Coinbase Blue */
  color: #fff;
}

/* LEFT */
.footer-left {
  width: 25%;
}

.footer-logo {
  width: 250px;
  margin-bottom: 30px;
}

.follow-text {
  margin-bottom: 10px;
  font-size: 18px;
}

.social-icons a {
  background: rgba(255,255,255,0.1);
  padding: 12px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 18px;
  display: inline-block;
}

/* CENTER */
.footer-center {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.badge {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  padding: 14px 25px;
  border-radius: 10px;
  width: 210px;
}

.badge i {
  font-size: 26px;
  margin-right: 15px;
}

.badge span {
  font-size: 18px;
  font-weight: 700;
}

/* RIGHT */
.footer-right {
  width: 25%;
  text-align: left;
}

.footer-right h4 {
  line-height: 1.4;
  margin-bottom: 20px;
}

.label {
  color: #b7c7ff;
  margin-top: 15px;
  font-size: 14px;
}

.email, .ticket-link {
  font-size: 18px;
}

.ticket-link {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}
