@charset "utf-8";
:root {
  --green-dark: #00462f;
  --green-main: #005c3d;
  --green-soft: #eaf4ef;
  --text-main: #172033;
  --text-muted: #4f5968;
  --line: #dde4df;
  --bg: #f7f6f1;
  --white: #ffffff;
  --shadow-soft: 0 14px 40px rgba(18, 31, 27, 0.07);
  --radius-large: 16px;
  --radius-medium: 10px;
  --container: 1240px;
}
 
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', Arial, sans-serif;  background: var(--bg);  color: var(--text-main);  line-height: 1.65; font-size: 16px;}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
 
.site-header {  position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,0.96);  border-bottom: 1px solid var(--line); box-shadow: 0 8px 24px rgba(0,0,0,0.04);}
.header-inner { height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo img { width: 275px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 44px; font-weight: 800; font-size: 15px; }
.main-nav a { position: relative; padding: 0px 0 0; }
.main-nav a.active::after, .main-nav a:hover::after { content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 5px; border-radius: 999px; background: var(--green-main); }
 
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 31px; border-radius: 6px; font-weight: 800; font-size: 15px; border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,70,47,0.16); }
.btn-primary { background: var(--green-dark); color: white; border-color: var(--green-dark); }
.btn-secondary { background: rgba(255,255,255,0.84); color: var(--green-dark); border-color: #8aa99b; }
.page-wrap { padding: 24px 0 28px; }
 
.hero-card { position: relative; min-height: 360px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-large); background: white; box-shadow: var(--shadow-soft); display: grid; grid-template-columns: 55% 45%; }
.hero-content { position: relative; z-index: 2; padding: 56px 52px ; background: linear-gradient(90deg, #fff 0%, #fff 68%, rgba(255,255,255,.88) 82%, rgba(255,255,255,0) 100%); }
h1, h2 { font-family: 'Lora', Georgia, serif; color: var(--text-main); line-height: 1.18; letter-spacing: -0.03em; }
h1 { font-size: 49px; max-width: 640px; margin-bottom: 20px; }
.hero-content p { max-width: 500px; font-size: 20px; color: #283044; font-weight: 500; margin-bottom: 29px; }
.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-image { position: absolute; inset: 0 0 0 auto; width: 62%; background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 30%, rgba(255,255,255,0) 100%), url('img/forras-hero.jpg'); background-size: cover; background-position: center; }
 
.feature-strip, .about-card, .services-card, .online-card, .faq-card, .contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-large); box-shadow: var(--shadow-soft); margin-top: 20px; }
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); padding: 28px 0; }
.feature-item { text-align: center; padding: 8px 45px 16px; border-right: 1px solid var(--line); }
.feature-item:last-child { border-right: 0; }
.icon { font-size: 48px; line-height: 1; color: var(--green-dark); margin-bottom: 10px; font-weight: 400; }
h3 { font-size: 16px; line-height: 1.35; font-weight: 800; margin-bottom: 10px; }
.feature-item p, .service-box p { color: var(--text-muted); font-size: 15px; }
 
.about-card { display: grid; grid-template-columns: 250px 1fr 1.2fr; gap: 38px; align-items: center; padding: 36px 44px; }
.portrait-wrap img { width: 230px; height: 230px; border-radius: 50%; object-fit: cover; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--green-dark); font-size: 16px; margin-bottom: 8px; }
.eyebrow::after { content: ''; display: inline-block; width: 42px; height: 1px; background: #9ba9a2; margin-left: 12px; vertical-align: middle; }
.about-text h2, .online-card h2, .contact-form h2 { font-size: 33px; margin-bottom: 20px; }
.about-text p:not(.eyebrow) { color: var(--text-muted); margin-bottom: 26px; max-width: 520px; }
.about-list { border-left: 1px solid var(--line); padding-left: 38px; }
.about-list ul { list-style: none; display: grid; gap: 20px; }
.about-list li { position: relative; padding-left: 34px; color: var(--text-muted); font-size: 15px; }
.about-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border: 2px solid var(--green-dark); border-radius: 50%; color: var(--green-dark); font-weight: 800; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }
.about-list strong { color: var(--text-main); }
 
.services-card { padding: 44px 12px 36px; text-align: center; scroll-margin-top: 120px;}
.centered { text-align: center; margin-top: 2px; }
.services-card h2 { font-size: 35px;  margin-top: 20px; margin-bottom: 26px; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.service-box { min-height: 100px; border: 1px solid var(--line); border-radius: 8px; padding: 22px 18px 10px; background: white; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.service-box .icon { font-size: 46px; margin-bottom: 10px; }
.services-cta { margin-top: 26px; }
 
.process-strip { margin-top: 20px; background: var(--green-dark); color: white; border-radius: 12px; min-height: 132px; display: grid; grid-template-columns: .8fr 1.4fr .2fr 1.4fr .2fr 1.4fr .2fr 1.4fr; align-items: center; gap: 12px; padding: 20px 30px; }
.process-title { text-transform: uppercase; letter-spacing: .09em; font-weight: 800; text-align: center; font-size: 13px; }
.process-step { display: flex; gap: 16px; align-items: center; }
.process-step span { flex: 0 0 64px; height: 64px; border-radius: 50%; background: white; color: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; }
.process-step h3 { color: white; margin-bottom: 3px; }
.process-step p { font-size: 13px; line-height: 1.45; color: rgba(255,255,255,.9); }
.arrow { color: rgba(255,255,255,.7); text-align: center; }
 
.online-card { display: grid; grid-template-columns: 230px 1fr 1fr; align-items: center; gap: 30px; padding: 34px 48px; }
.laptop-icon { width: 128px; height: 88px; border: 5px solid var(--green-dark); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 45px; margin: 0 auto; }
.online-card p { color: var(--text-muted); }
.online-action { text-align: left; }
.online-action p { margin-top: 18px; }
.online-action a:not(.btn) { color: var(--green-dark); font-weight: 800; text-decoration: underline; }
 
.faq-card { padding: 22px 30px 30px ; }
.faq-card h2 { font-size: 25px; margin-bottom: 16px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
details { border: 1px solid var(--line); border-radius: 6px; background: white; padding: 0 20px; }
summary { list-style: none; cursor: pointer; height: 56px; display: flex; align-items: center; justify-content: space-between; font-weight: 600; }
summary::after { content: '⌄'; font-size: 18px; }
details[open] summary::after { content: '⌃'; }
details p { color: var(--text-muted); padding: 0 0 18px; font-size: 14px; }
 
.contact-card { display: grid; grid-template-columns: 390px 1fr; gap: 40px; padding: 40px 44px 34px; margin-bottom: 24px; scroll-margin-top: 80px;}
.contact-info { border-right: 1px solid var(--line); padding-right: 38px; }
.contact-info img { width: 245px; margin-bottom: 22px; }
.contact-info p { color: var(--text-muted); margin-bottom: 18px; }
.contact-line { color: var(--text-main) !important; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
input, textarea { width: 100%; border: 1px solid #d7ded9; border-radius: 6px; padding: 16px 18px; font: inherit; color: var(--text-main); background: white; }
textarea { height: 122px; resize: vertical; margin-bottom: 18px; }
input:focus, textarea:focus { outline: 2px solid rgba(0,92,61,.18); border-color: var(--green-main); }
.site-footer { background: var(--green-dark); color: white; border-radius: 8px 8px 0 0; }
.footer-inner { min-height: 55px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
.footer-inner a { color: white; margin: 0 12px; }
.required { color: #b32323; }

@media (max-width: 1050px) {
.header-inner { height: auto; padding: 10px 0px 0px; flex-wrap: wrap; }
.main-nav { order: 3; width: 100%; justify-content: center; gap: 10px; flex-wrap: wrap; }
.hero-card { position: relative; grid-template-columns: 1fr;  background-color: #1a1a1a;  overflow: hidden; }

.hero-image {position: absolute;  top: 0; left: 0; width: 100%; height: 100%;  opacity: 1;  background-image: linear-gradient(0deg, rgba(255,255,255,0.4), rgba(255,255,255,0.4)), url('img/forras-hero.jpg'); background-size: cover; background-position: center;  z-index: 1; }

.hero-content { position: relative; z-index: 2; 
    background: transparent; /* KITÖRÖLTÜK a fehér hátteret, ami eltakarta a képet */
    color: #ffffff; /* A szöveg fehér lesz, hogy jól olvasható legyen */
    padding: 40px; /* Hogy a szöveg ne érjen a kártya széléhez */
}
.hero-content h1, 
.hero-content p { font-size: 20px;font-weight: 800; color: #000000;  text-shadow: 0 0 10px rgba(255, 255, 255, 0.),   0 0 5px rgba(255, 255, 255, 0.9);}	
  .feature-strip, .service-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card, .online-card, .contact-card { grid-template-columns: 1fr; }
  .about-list, .contact-info { border-left: 0; border-right: 0; padding-left: 0; padding-right: 0; }
  .process-strip { grid-template-columns: 1fr; }
  .arrow { display: none; }
}
	
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: 36px; }
  .hero-content { padding: 33px 24px; }
  .feature-strip, .service-grid, .faq-grid, .form-row { grid-template-columns: 1fr;}
  .feature-item { border-right: 0; border-bottom: 10px solid var(--line); }
  .feature-item:last-child { border-bottom: 0; }
  .contact-card { padding: 40px 22px 25px; }
  .about-card, .online-card { padding: 25px 22px; }
  .header-cta { display: none;}	
  .header-cta_1 { width: 100%;}
  .contact-form { scroll-margin-top: 200px;}
  .footer-inner { flex-direction: column; padding: 14px 0; } 
}
