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

 body {
     font-family: "Schibsted Grotesk", sans-serif;
     background: #0b0b0b;
     color: #fff;
     line-height: 1.6;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 /* Header */
 header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 50px;
     border-bottom: 1px solid #222;
 }

 .logo {
     font-weight: bold;
     font-size: 18px;
     display: flex;
     align-items: center;
     gap: 8px;
     color: #FFFFFF;
 }

 .logo::before {
     content: "";
     display: inline-block;
     width: 40px;
     /* increased from 20px */
     height: 40px;
     /* increased from 20px */
     background: url('logo.svg') no-repeat center / contain;
     vertical-align: middle;
 }


 .nav-buttons {
     display: flex;
     gap: 15px;
 }

 .btn {
     padding: 8px 18px;
     font-size: 14px;
     cursor: pointer;
     border: none;
 }

 .btn-outline {
     background: #fff;
     color: #000;
 }

 .btn-primary {
     background: #18ff92;
     color: #000;
 }

 /* Hero Section */
 .hero {
     text-align: center;
     padding: 50px 20px;
 }

 .hero h1 {
     font-size: 48px;
     color: #18ff92;
     margin-bottom: 15px;
 }

 .hero p {
     color: #aaa;
     max-width: 600px;
     margin: 0 auto;
     font-size: 18px;
 }

 /* Export Section */
 .export-section {
     text-align: center;
     padding: 60px 20px;
 }

 .export-section h2 {
     font-size: 32px;
     margin-bottom: 10px;
 }

 .export-section p {
     color: #888;
     margin-bottom: 30px;
 }

 .tabs {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-bottom: 20px;
     flex-wrap: wrap;
 }

 .tab {
     padding: 10px 20px;
     background: #111;
     border: 1px solid #333;
     color: #fff;
     cursor: pointer;
 }

 .tab.active {
     background: #18ff92;
     color: #000;
     border-color: #18ff92;
 }

 .url-input {
     max-width: 700px;
     margin: 0 auto;
 }

 .url-input .input-group {
     display: flex;
     /* keeps input + button in the same row */
     gap: 10px;
     width: 100%;
 }

 .url-input input {
     flex: 1;
     padding: 12px;
     border: none;
     outline: none;
     background: #111;
     color: #fff;
     border-radius: 4px;
 }

 .url-input button {
     padding: 12px 20px;
     background: #18ff92;
     border: none;
     border-radius: 4px;
     color: #000;
     font-weight: bold;
     cursor: pointer;
 }

 .error-message {
     margin-top: 6px;
     text-align: left;
     /* so it aligns with input */
     font-size: 14px;
     color: #ff4d4f;
     /* red for error */
     display: none;
 }

 /* Footer */
 footer {
     background: linear-gradient(90deg, #0b0b0b, #0f2d1b);
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 70px 50px;
     /* increased from 40px 50px */
     flex-wrap: wrap;
 }

 footer .logo {
     font-size: 18px;
 }

 footer .links {
     display: flex;
     gap: 20px;
     margin: 10px 0;
 }

 footer .contact {
     font-size: 14px;
     color: #ccc;
 }

 footer .chat {
     font-size: 14px;
     color: #aaa;
     margin-top: 10px;
 }

 .contact::before {
     content: "";
     display: inline-block;
     width: 20px;
     /* adjust size */
     height: 20px;
     margin-right: 8px;
     vertical-align: middle;
     background: url("mail.svg") no-repeat center / contain;
 }

 @media (max-width: 768px) {
     .hero h1 {
         font-size: 36px;
     }

     .export-section h2 {
         font-size: 24px;
     }

     header {
         flex-direction: column;
         gap: 10px;
     }

     footer {
         flex-direction: column;
         text-align: center;
     }
 }

 /* Pricing Section */
 .pricing {
     text-align: center;
     padding: 80px 20px;
 }

 .pricing h2 {
     font-size: 36px;
     color: #18ff92;
     margin-bottom: 10px;
 }

 .pricing p {
     color: #aaa;
     margin-bottom: 40px;
 }

 .toggle {
     display: flex;
     justify-content: center;
     gap: 10px;
     margin-bottom: 40px;
 }

 .toggle button {
     background: #111;
     color: #fff;
     border: 1px solid #333;
     padding: 8px 20px;
     border-radius: 20px;
     cursor: pointer;
 }

 .toggle button.active {
     background: #18ff92;
     color: #000;
     border-color: #18ff92;
 }

 .cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     max-width: 1000px;
     margin: 0 auto;
 }

 .card {
     background: #111;
     padding: 30px 20px;
     border-radius: 12px;
     border: 1px solid #222;
     text-align: left;
     position: relative;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
 }

 .card.popular {
     background: #18ff92;
     color: #000;
 }

 .card h3 {
     font-size: 28px;
     margin-bottom: 5px;
 }

 .card p.price {
     font-size: 24px;
     font-weight: bold;
     margin-bottom: 15px;
 }

 .card p.desc {
     margin-bottom: 20px;
     color: #aaa;
 }

 .card ul {
     list-style: none;
     margin-bottom: 20px;
 }

 .card ul li {
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .card ul li::before {
     content: "✔️";
     color: #18ff92;
 }

 .card.popular ul li::before {
     color: #000;
 }

 .popular-tag {
     position: absolute;
     top: -10px;
     right: 20px;
     background: #000;
     color: #fff;
     font-size: 12px;
     font-weight: bold;
     padding: 4px 10px;
     border-radius: 10px;
 }

 .card button {
     width: 100%;
     padding: 12px;
     border-radius: 25px;
     border: none;
     background: #18ff92;
     color: #000;
     font-weight: bold;
     cursor: pointer;
 }

 .card.popular button {
     background: #000;
     color: #18ff92;
 }



 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     justify-content: center;
     align-items: center;
 }

 .modal-content {
     background: #111;
     padding: 30px;
     border-radius: 10px;
     text-align: center;
 }

 .close {
     position: absolute;
     top: 20px;
     right: 30px;
     font-size: 28px;
     cursor: pointer;
     color: #fff;
 }

 .google-btn {
     margin-top: 20px;
 }




.exports-page {
  max-width: 1100px;
  margin: 60px auto;
  padding: 150px 20px;
}

.exports-page h1 {
  font-size: 36px;
  color: #18ff92;
  margin-bottom: 10px;
  text-align: center;
}

.exports-page .subtitle {
  color: #aaa;
  margin-bottom: 40px;
  text-align: center;
}

.export-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.export-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.export-card:hover {
  transform: translateY(-5px);
  border-color: #18ff92;
}

.export-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.export-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.export-card .btn {
  align-self: flex-start;
}

