/*
Theme Name: Profitox Theme
Theme URI: https://www.profitox.hu
Author: MrBandy & rhdesign.hu
Description: AI által generált sablon
Version: 1.0
*/

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

  :root {
    --green: #1a7a2e;
    --green-dark: #0f5c20;
    --green-light: #2da644;
    --yellow: #f5c800;
    --yellow-dark: #d4a900;
    --white: #ffffff;
    --off-white: #f7f8f4;
    --dark: #0d1a0f;
    --gray: #5a6b5c;
    --gray-light: #e8eee9;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* HEADER */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(13, 26, 15, 0.97);
    backdrop-filter: blur(8px);
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--green);
  }

  .header-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--yellow);
    letter-spacing: 2px;
    text-decoration: none;
  }
  .header-logo span { color: var(--white); }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .header-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .header-nav a:hover { color: var(--yellow); }

  .header-cta {
    background: var(--yellow);
    color: var(--dark) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    transition: background 0.2s, transform 0.2s !important;
  }
  .header-cta:hover { background: var(--yellow-dark) !important; transform: scale(1.03); }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1a0f 0%, #1a3a1f 50%, #0f2f14 100%);
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .hero-blob {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,122,46,0.25) 0%, transparent 70%);
    right: -100px; top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
    50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
  }

  .hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,200,0,0.15);
    border: 1px solid rgba(245,200,0,0.4);
    padding: 6px 16px;
    border-radius: 100px;
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-badge::before { content: '✓'; }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 1px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--yellow);
    display: block;
  }

  .hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 36px;
  }

  .hero-sub strong { color: var(--white); }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--dark);
    padding: 18px 36px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(245,200,0,0.35);
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245,200,0,0.45);
  }
  
  .btn-primary.testimonials {
  margin-top: 30px;
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 18px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.25s;
  }
  .btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
  }

  .hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 600;
  }

  .trust-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(26,122,46,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  /* URGENT STRIP */
  .urgent-strip {
    background: var(--yellow);
    padding: 16px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .urgent-strip p {
    font-weight: 800;
    font-size: 1rem;
    color: var(--dark);
    text-align: center;
  }

  .strip-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .strip-cta:hover { background: var(--green-dark); }

  /* SECTION HELPERS */
  .section { padding: 80px 5%; }
  .section-alt { background: var(--off-white); }

  .section-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 16px;
  }

  .section-title span { color: var(--green); }

  .section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 600px;
  }

  .section-header { margin-bottom: 56px; }
  .section-header.centered { text-align: center; }
  .section-header.centered .section-desc { margin: 0 auto; }

  .section-post { padding: 150px 20%; }

  .section-post p {
    line-height: 25px;
    margin-bottom: 10px;
   }
   
  .section-post h2, h3 {
    margin: 30px 0 15px 0;
   }
   
  .section-post img {
    margin-bottom: 30px;
   }

  /* WHY US */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .why-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .why-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
  .why-card:hover::before { transform: scaleX(1); }

  .why-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .why-card h3 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
  }

  .why-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
  }

  .service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 20px;
    border: 1.5px solid var(--gray-light);
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: block;
    color: var(--dark);
  }
  .service-card:hover {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26,122,46,0.25);
  }

  .service-emoji { font-size: 2rem; margin-bottom: 10px; display: block; }

  .service-card h3 {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
  }

  /* PROCESS */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    position: relative;
  }

  .process-step {
    padding: 40px 32px;
    position: relative;
  }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(26,122,46,0.12);
    line-height: 1;
    margin-bottom: -20px;
    display: block;
  }

  .step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
  }

  .process-step h3 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .process-step p { font-size: 0.93rem; color: var(--gray); line-height: 1.6; }

  /* TESTIMONIALS */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--gray-light);
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: var(--green);
    opacity: 0.15;
    position: absolute;
    top: 10px; left: 20px;
    line-height: 1;
  }

  .stars {
    color: var(--yellow);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }

  .testimonial-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
  }

  .testimonial-author {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--green);
  }

  /* ABOUT */
  .about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }

  .about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
  }

  .about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 600;
  }

  .about-img-placeholder .big-icon { font-size: 4rem; }

  .about-badge-wrap {
    position: absolute;
    bottom: -16px; right: -16px;
    background: var(--yellow);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }

  .about-badge-wrap .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--dark);
    line-height: 1;
  }

  .about-badge-wrap .label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
  }

  .about-content .section-title { margin-bottom: 20px; }

  .about-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .about-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
  }

  .highlight-check {
    width: 24px; height: 24px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  /* CTA SECTION */
  .cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .cta-section > * { position: relative; z-index: 1; }

  .cta-section .section-title { color: var(--white); margin-bottom: 16px; }
  .cta-section .section-title span { color: var(--yellow); }
  .cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }

  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--green-dark);
    padding: 18px 36px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }

  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 18px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.25s;
  }
  .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* CONTACT */
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .contact-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .contact-detail-icon {
    width: 44px; height: 44px;
    background: var(--green);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
  }

  .contact-detail-text a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    transition: color 0.2s;
  }
  .contact-detail-text a:hover { color: var(--green); }
  .contact-detail-text small { color: var(--gray); font-size: 0.85rem; }

  .contact-form {
    background: var(--off-white);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--gray-light);
  }

  .contact-form h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .contact-form p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  .form-group { margin-bottom: 18px; }

  .form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: var(--dark);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--dark);
    transition: border-color 0.2s;
    outline: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26,122,46,0.1);
  }

  .form-group textarea { resize: vertical; min-height: 110px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .form-consent {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .btn-submit {
    width: 100%;
    background: var(--green);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.5px;
  }
  .btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,122,46,0.3); }

  /* FOOTER */
  .site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 5% 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-brand .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--yellow);
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
  }

  .footer-brand .logo img {
    width: 100px;
  }

  .footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

  .footer-social { display: flex; gap: 12px; }

  .social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
  }
  .social-btn:hover { background: var(--green); color: white; }

  .footer-col h4 {
    color: var(--white);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--yellow); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p { font-size: 0.85rem; }

  .footer-bottom-links { display: flex; gap: 20px; }
  .footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
  .footer-bottom-links a:hover { color: var(--yellow); }

  /* STICKY PHONE BUTTON */
  .sticky-phone {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 888;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .phone-bubble {
    background: var(--green);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    animation: fadeInRight 0.5s 1s both;
    white-space: nowrap;
  }

  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
  }

  .phone-btn {
    width: 60px; height: 60px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(26,122,46,0.5);
    animation: ring 3s ease-in-out infinite;
    transition: background 0.2s, transform 0.2s;
  }

  .phone-btn:hover { background: var(--green-dark); transform: scale(1.08); }

  @keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-8deg); }
    20%, 40% { transform: rotate(8deg); }
    50% { transform: rotate(0deg); }
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .about-wrap, .contact-wrap, .footer-grid { grid-template-columns: 1fr; }
    .about-badge-wrap { right: 0; bottom: -20px; }
    .header-nav { display: none; }
    .process-steps { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .hero h1 { font-size: 2.8rem; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  /* TOGGLE MENU */
  .menu-toggle { display: none; }

@media (max-width: 768px) {
  .section-post { padding: 80px 5%; }

  .menu-toggle {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s;
  }

  .main-menu {
    display: none;
  }

  .main-menu.active {
    display: block;
  }
}

  /* REVEAL ANIMATION */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  